Home
last modified time | relevance | path

Searched defs:pageCache (Results 1 – 1 of 1) sorted by relevance

/prebuilts/go/linux-x86/src/runtime/
Dmpagecache.go18 type pageCache struct { struct
19 base uintptr // base address of the chunk
20 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) {