Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Densify (0.14 sec)

  1. src/runtime/mpagecache.go

    	// slower, safer thing by iterating over each bit individually.
    	for i := uint(0); i < 64; i++ {
    		if c.cache&(1<<i) != 0 {
    			p.chunkOf(ci).free1(pi + i)
    
    			// Update density statistics.
    			p.scav.index.free(ci, pi+i, 1)
    		}
    		if c.scav&(1<<i) != 0 {
    			p.chunkOf(ci).scavenged.setRange(pi+i, 1)
    		}
    	}
    
    	// Since this is a lot like a free, we need to make sure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 14:30:00 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top