Home
last modified time | relevance | path

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

/external/cronet/base/allocator/partition_allocator/
Dpartition_bucket.h33 struct PartitionBucket { struct
36 SlotSpanMetadata<thread_safe>* active_slot_spans_head;
38 SlotSpanMetadata<thread_safe>* empty_slot_spans_head;
39 SlotSpanMetadata<thread_safe>* decommitted_slot_spans_head;
40 uint32_t slot_size;
41 uint32_t num_system_pages_per_slot_span
43 uint32_t num_full_slot_spans : 24;
50 uint64_t slot_size_reciprocal;
56 static constexpr uint64_t kReciprocalShift = 42;
57 static constexpr uint64_t kReciprocalMask = (1ull << kReciprocalShift) - 1;
[all …]
Dpartition_bucket.cc1483 template struct PartitionBucket<ThreadSafe>; variable