Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for allocCache (0.09 sec)

  1. src/runtime/mcentral.go

    	}
    	freeByteBase := s.freeindex &^ (64 - 1)
    	whichByte := freeByteBase / 8
    	// Init alloc bits cache.
    	s.refillAllocCache(whichByte)
    
    	// Adjust the allocCache so that s.freeindex corresponds to the low bit in
    	// s.allocCache.
    	s.allocCache >>= s.freeindex % 64
    
    	return s
    }
    
    // Return span from an mcache.
    //
    // s must have a span class corresponding to this
    // mcentral and it must not be empty.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top