Home
last modified time | relevance | path

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

/art/runtime/gc/allocator/
Drosalloc.cc41 size_t RosAlloc::numOfSlots[kNumOfSizeBrackets]; member in art::gc::allocator::RosAlloc
557 const size_t num_of_slots = numOfSlots[idx]; in AllocRun()
837 size_t num_slots = numOfSlots[idx]; in Dump()
868 DCHECK_LT(slot_idx, numOfSlots[idx]) << "out of range"; in AllocSlot()
880 const size_t num_words = RoundUp(numOfSlots[idx], 32) / 32; in AllocSlot()
899 DCHECK_LT(slot_idx, numOfSlots[idx]); in FreeSlot()
902 size_t num_vec = RoundUp(numOfSlots[idx], 32) / 32; in FreeSlot()
925 const size_t num_of_slots = numOfSlots[idx]; in MergeThreadLocalFreeBitMapToAllocBitMap()
1012 DCHECK_LT(slot_idx, numOfSlots[idx]); in MarkFreeBitMapShared()
1042 const size_t num_slots = numOfSlots[idx]; in IsAllFree()
[all …]
Drosalloc.h194 return RoundUp(numOfSlots[size_bracket_idx_], 32) / 32; in NumberOfBitmapVectors()
273 static size_t numOfSlots[kNumOfSizeBrackets]; variable