Home
last modified time | relevance | path

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

/art/runtime/gc/allocator/
Drosalloc.cc846 uintptr_t slot_idx = slot_offset / bracket_size; in FreeListToStr() local
848 free_list_str.append(StringPrintf("%u-", static_cast<uint32_t>(slot_idx))); in FreeListToStr()
850 free_list_str.append(StringPrintf("%u", static_cast<uint32_t>(slot_idx))); in FreeListToStr()
976 size_t slot_idx = SlotIndex(slot); in InspectAllSlots() local
977 DCHECK_LT(slot_idx, num_slots); in InspectAllSlots()
978 is_free[slot_idx] = true; in InspectAllSlots()
982 size_t slot_idx = SlotIndex(slot); in InspectAllSlots() local
983 DCHECK_LT(slot_idx, num_slots); in InspectAllSlots()
984 is_free[slot_idx] = true; in InspectAllSlots()
987 for (size_t slot_idx = 0; slot_idx < num_slots; ++slot_idx) { in InspectAllSlots() local
[all …]
Drosalloc.h472 size_t slot_idx = offset_from_slot_base / bracket_size; in ToSlot() local
473 DCHECK_LT(slot_idx, numOfSlots[idx]); in ToSlot()
482 size_t slot_idx = offset_from_slot_base / bracket_size; in SlotIndex() local
483 DCHECK_LT(slot_idx, numOfSlots[idx]); in SlotIndex()
484 return slot_idx; in SlotIndex()