Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for aframe (0.11 sec)

  1. src/runtime/mheap.go

    	reclaimCredit atomic.Uintptr
    
    	_ cpu.CacheLinePad // prevents false-sharing between arenas and preceding variables
    
    	// arenas is the heap arena map. It points to the metadata for
    	// the heap for every arena frame of the entire usable virtual
    	// address space.
    	//
    	// Use arenaIndex to compute indexes into this array.
    	//
    	// For regions of the address space that are not backed by the
    	// Go heap, the arena map contains nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/regalloc.go

    func isLeaf(f *Func) bool {
    	for _, b := range f.Blocks {
    		for _, v := range b.Values {
    			if v.Op.IsCall() && !v.Op.IsTailCall() {
    				// tail call is not counted as it does not save the return PC or need a frame
    				return false
    			}
    		}
    	}
    	return true
    }
    
    // needRegister reports whether v needs a register.
    func (v *Value) needRegister() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/loader.go

    	attrNotInSymbolTable Bitmap // "not in symtab" symbols, indexed by global idx
    	attrUsedInIface      Bitmap // "used in interface" symbols, indexed by global idx
    	attrSpecial          Bitmap // "special" frame symbols, indexed by global idx
    	attrVisibilityHidden Bitmap // hidden symbols, indexed by ext sym index
    	attrDuplicateOK      Bitmap // dupOK symbols, indexed by ext sym index
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top