Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for minTagBits (0.11 sec)

  1. src/runtime/tagptr.go

    // The size of the numeric tag is GOARCH-dependent,
    // currently at least 10 bits.
    // This should only be used with pointers allocated outside the Go heap.
    type taggedPointer uint64
    
    // minTagBits is the minimum number of tag bits that we expect.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:22:50 UTC 2023
    - 496 bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    	// fits in a word.
    	if minSizeForMallocHeader/goarch.PtrSize > 8*goarch.PtrSize {
    		throw("max pointer/scan bitmap size for headerless objects is too large")
    	}
    
    	if minTagBits > taggedPointerBits {
    		throw("taggedPointerbits too small")
    	}
    
    	// Initialize the heap.
    	mheap_.init()
    	mcache0 = allocmcache()
    	lockInit(&gcBitsArenas.lock, lockRankGcBitsArenas)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top