Home
last modified time | relevance | path

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

/art/runtime/gc/allocator/
Drosalloc-inl.h119 return numOfSlots[idx] * bracket_size; in MaxBytesBulkAllocatedFor()
138 DCHECK_LT(slot_idx, numOfSlots[idx]) << "out of range"; in AllocSlot()
153 const size_t num_words = RoundUp(numOfSlots[idx], 32) / 32; in AllocSlot()
Drosalloc.cc43 size_t RosAlloc::numOfSlots[kNumOfSizeBrackets]; member in art::gc::allocator::RosAlloc
566 const size_t num_of_slots = numOfSlots[idx]; in AllocRun()
867 size_t num_slots = numOfSlots[idx]; in Dump()
891 DCHECK_LT(slot_idx, numOfSlots[idx]); in FreeSlot()
894 size_t num_vec = RoundUp(numOfSlots[idx], 32) / 32; in FreeSlot()
916 const size_t num_slots = numOfSlots[idx]; in NumberOfFreeSlots()
936 const size_t num_of_slots = numOfSlots[idx]; in MergeThreadLocalFreeBitMapToAllocBitMap()
1023 DCHECK_LT(slot_idx, numOfSlots[idx]); in MarkFreeBitMapShared()
1054 const size_t num_slots = numOfSlots[idx]; in IsAllFree()
1092 const size_t num_slots = numOfSlots[idx]; in SetAllocBitMapBitsForInvalidSlots()
[all …]
Drosalloc.h200 return RoundUp(numOfSlots[size_bracket_idx_], 32) / 32; in NumberOfBitmapVectors()
283 static size_t numOfSlots[kNumOfSizeBrackets]; variable