Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 159 for Nname (0.1 sec)

  1. src/cmd/compile/internal/ir/func.go

    				sym = fn.Sym().Pkg.LookupNum(prefix, i)
    			}
    
    			name := NewNameAt(param.Pos, sym, param.Type)
    			name.Class = ctxt
    			name.Curfn = fn
    			fn.Dcl[offset+i] = name
    
    			if setNname {
    				param.Nname = name
    			}
    		}
    	}
    
    	sig := fn.Type()
    	params := sig.RecvParams()
    	results := sig.Results()
    
    	fn.Dcl = make([]*Name, len(params)+len(results))
    	declareParams(params, PPARAM, "~p", 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. operator/pkg/compare/compare.go

    					return nil, fmt.Errorf("failed to split the old name,"+
    						" length != 3: %v", name)
    				}
    				toList := strings.Split(toPat, ":")
    				if len(toList) != 3 {
    					return nil, fmt.Errorf("failed to split the rename-to string,"+
    						" length != 3: %v", toPat)
    				}
    
    				// Use the old name if toList has "*" or ""
    				// Otherwise, use the name in toList
    				newList := make([]string, 3)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/abi.go

    		}
    		wfs[i].Offset = p.FrameOffset(result)
    	}
    	return wfs
    }
    
    // setupWasmABI calculates the params and results in terms of WebAssembly values for the given function.
    func setupWasmABI(f *ir.Func) {
    	wi := obj.WasmImport{
    		Module: f.WasmImport.Module,
    		Name:   f.WasmImport.Name,
    	}
    	if wi.Module == wasm.GojsModule {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. src/internal/xcoff/file.go

    }
    
    // Section returns the first section with the given name, or nil if no such
    // section exists.
    // Xcoff have section's name limited to 8 bytes. Some sections like .gosymtab
    // can be trunked but this method will still find them.
    func (f *File) Section(name string) *Section {
    	for _, s := range f.Sections {
    		if s.Name == name || (len(name) > 8 && s.Name == name[:8]) {
    			return s
    		}
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/controller/controller_test.go

    					HealthChecks: []healthz.HealthChecker{
    						&mockHealthChecker{
    							pluginName: "invalid\nname",
    							err:        nil,
    						},
    					},
    					EncryptionFileContentHash: "anything different",
    				}, nil
    			},
    		},
    		{
    			name:                    "when config is not updated transformers are closed correctly",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/liveness/plive.go

    func shouldTrack(n *ir.Name) bool {
    	return (n.Class == ir.PAUTO && n.Esc() != ir.EscHeap || n.Class == ir.PPARAM || n.Class == ir.PPARAMOUT) && n.Type().HasPointers()
    }
    
    // getvariables returns the list of on-stack variables that we need to track
    // and a map for looking up indices by *Node.
    func getvariables(fn *ir.Func) ([]*ir.Name, map[*ir.Name]int32) {
    	var vars []*ir.Name
    	for _, n := range fn.Dcl {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  7. src/internal/xcoff/xcoff.go

    	F_FDPR_OPTI = 0x0020
    	F_DSA       = 0x0040
    	F_VARPG     = 0x0100
    	F_DYNLOAD   = 0x1000
    	F_SHROBJ    = 0x2000
    	F_LOADONLY  = 0x4000
    )
    
    // Section Header.
    type SectionHeader32 struct {
    	Sname    [8]byte // Section name
    	Spaddr   uint32  // Physical address
    	Svaddr   uint32  // Virtual address
    	Ssize    uint32  // Section size
    	Sscnptr  uint32  // Offset in file to raw data for section
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ir/fmt.go

    	}
    
    	if base.Debug.DumpPtrs != 0 && n.Name() != nil && n.Name().Defn != nil {
    		// Useful to see where Defn is set and what node it points to
    		fmt.Fprintf(w, " defn(%p)", n.Name().Defn)
    	}
    
    	if base.Debug.DumpPtrs != 0 && n.Name() != nil && n.Name().Curfn != nil {
    		// Useful to see where Defn is set and what node it points to
    		fmt.Fprintf(w, " curfn(%p)", n.Name().Curfn)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types/fmt.go

    	}
    }
    
    // SplitVargenSuffix returns name split into a base string and a ·N
    // suffix, if any.
    func SplitVargenSuffix(name string) (base, suffix string) {
    	i := len(name)
    	for i > 0 && name[i-1] >= '0' && name[i-1] <= '9' {
    		i--
    	}
    	const dot = "·"
    	if i >= len(dot) && name[i-len(dot):i] == dot {
    		i -= len(dot)
    		return name[:i], name[i:]
    	}
    	return name, ""
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/staticinit/sched.go

    func StaticLoc(n ir.Node) (name *ir.Name, offset int64, ok bool) {
    	if n == nil {
    		return nil, 0, false
    	}
    
    	switch n.Op() {
    	case ir.ONAME:
    		n := n.(*ir.Name)
    		return n, 0, true
    
    	case ir.OMETHEXPR:
    		n := n.(*ir.SelectorExpr)
    		return StaticLoc(n.FuncName())
    
    	case ir.ODOT:
    		n := n.(*ir.SelectorExpr)
    		if name, offset, ok = StaticLoc(n.X); !ok {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
Back to top