Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 365 for Nname (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/compile/internal/types/type.go

    		return CMPeq
    
    	case TSSA:
    		tname := t.extra.(string)
    		xname := x.extra.(string)
    		// desire fast sorting, not pretty sorting.
    		if len(tname) == len(xname) {
    			if tname == xname {
    				return CMPeq
    			}
    			if tname < xname {
    				return CMPlt
    			}
    			return CMPgt
    		}
    		if len(tname) > len(xname) {
    			return CMPgt
    		}
    		return CMPlt
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/cmd/compile/internal/walk/convert.go

    		xe := ir.NewIndexExpr(base.Pos, staticuint64s, index)
    		xe.SetBounded(true)
    		value = xe
    	case n.Op() == ir.ONAME && n.(*ir.Name).Class == ir.PEXTERN && n.(*ir.Name).Readonly():
    		// n is a readonly global; use it directly.
    		value = n
    	case conv.Esc() == ir.EscNone && fromType.Size() <= 1024:
    		// n does not escape. Use a stack temporary initialized to n.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 17:28:22 UTC 2023
    - 18.2K bytes
    - Viewed (0)
Back to top