Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for heapBitsSlice (0.13 sec)

  1. src/cmd/compile/internal/test/inl_test.go

    			"subtractb",
    			"tophash",
    			"(*bmap).keys",
    			"(*bmap).overflow",
    			"(*waitq).enqueue",
    			"funcInfo.entry",
    
    			// GC-related ones
    			"cgoInRange",
    			"gclinkptr.ptr",
    			"guintptr.ptr",
    			"heapBitsSlice",
    			"markBits.isMarked",
    			"muintptr.ptr",
    			"puintptr.ptr",
    			"spanOf",
    			"spanOfUnchecked",
    			"typePointers.nextFast",
    			"(*gcWork).putFast",
    			"(*gcWork).tryGetFast",
    			"(*guintptr).set",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    	if span.npages == 1 {
    		// This will be inlined and constant-folded down.
    		return heapBitsSlice(span.base(), pageSize)
    	}
    	return heapBitsSlice(span.base(), span.npages*pageSize)
    }
    
    // Helper for constructing a slice for the span's heap bits.
    //
    //go:nosplit
    func heapBitsSlice(spanBase, spanSize uintptr) []uintptr {
    	bitmapSize := spanSize / goarch.PtrSize / 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top