Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for chunkPageIndex (0.13 sec)

  1. src/runtime/mgcscavenge.go

    	for i := start; i >= min; i-- {
    		// Skip over chunks.
    		if !s.chunks[i].load().shouldScavenge(gen, force) {
    			continue
    		}
    		// We're still scavenging this chunk.
    		if i == start {
    			return i, chunkPageIndex(searchAddr)
    		}
    		// Try to reduce searchAddr to newSearchAddr.
    		newSearchAddr := chunkBase(i) + pallocChunkBytes - pageSize
    		if marked {
    			// Attempt to be the first one to decrease the searchAddr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
Back to top