Home
last modified time | relevance | path

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

/art/runtime/gc/allocator/
Drosalloc.cc853 uintptr_t slot_idx = slot_offset / bracket_size; in FreeListToStr() local
855 free_list_str.append(StringPrintf("%u-", static_cast<uint32_t>(slot_idx))); in FreeListToStr()
857 free_list_str.append(StringPrintf("%u", static_cast<uint32_t>(slot_idx))); in FreeListToStr()
983 size_t slot_idx = SlotIndex(slot); in InspectAllSlots() local
984 DCHECK_LT(slot_idx, num_slots); in InspectAllSlots()
985 is_free[slot_idx] = true; in InspectAllSlots()
989 size_t slot_idx = SlotIndex(slot); in InspectAllSlots() local
990 DCHECK_LT(slot_idx, num_slots); in InspectAllSlots()
991 is_free[slot_idx] = true; in InspectAllSlots()
994 for (size_t slot_idx = 0; slot_idx < num_slots; ++slot_idx) { in InspectAllSlots() local
[all …]
Drosalloc.h473 size_t slot_idx = offset_from_slot_base / bracket_size; in ToSlot() local
474 DCHECK_LT(slot_idx, numOfSlots[idx]); in ToSlot()
483 size_t slot_idx = offset_from_slot_base / bracket_size; in SlotIndex() local
484 DCHECK_LT(slot_idx, numOfSlots[idx]); in SlotIndex()
485 return slot_idx; in SlotIndex()