Home
last modified time | relevance | path

Searched refs:decommitted_pages_head (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/third_party/base/allocator/partition_allocator/
Dpartition_alloc.cc142 bucket->decommitted_pages_head = 0; in PartitionBucketInitBase()
585 DCHECK(page != bucket->decommitted_pages_head); in PartitionSetNewActivePage()
598 page->next_page = bucket->decommitted_pages_head; in PartitionSetNewActivePage()
599 bucket->decommitted_pages_head = page; in PartitionSetNewActivePage()
698 DCHECK(!bucket->decommitted_pages_head); in PartitionDirectMap()
782 LIKELY(bucket->decommitted_pages_head != nullptr)) { in PartitionAllocSlowPath()
797 new_page->next_page = bucket->decommitted_pages_head; in PartitionAllocSlowPath()
798 bucket->decommitted_pages_head = new_page; in PartitionAllocSlowPath()
801 LIKELY(bucket->decommitted_pages_head != nullptr)) { in PartitionAllocSlowPath()
802 new_page = bucket->decommitted_pages_head; in PartitionAllocSlowPath()
[all …]
Dpartition_alloc.h277 PartitionPage* decommitted_pages_head; member