Searched defs:pageCache (Results 1 – 1 of 1) sorted by relevance
18 type pageCache struct { struct19 base uintptr // base address of the chunk20 cache uint64 // 64-bit bitmap representing free pages (1 means free)21 scav uint64 // 64-bit bitmap representing scavenged pages (1 means scavenged)25 func (c *pageCache) empty() bool {37 func (c *pageCache) alloc(npages uintptr) (uintptr, uintptr) {57 func (c *pageCache) allocN(npages uintptr) (uintptr, uintptr) {78 func (c *pageCache) flush(p *pageAlloc) {