Home
last modified time | relevance | path

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

/art/runtime/gc/allocator/
Drosalloc.cc849 uintptr_t slot_idx = slot_offset / bracket_size; in FreeListToStr() local
851 free_list_str.append(StringPrintf("%u-", static_cast<uint32_t>(slot_idx))); in FreeListToStr()
853 free_list_str.append(StringPrintf("%u", static_cast<uint32_t>(slot_idx))); in FreeListToStr()
979 size_t slot_idx = SlotIndex(slot); in InspectAllSlots() local
980 DCHECK_LT(slot_idx, num_slots); in InspectAllSlots()
981 is_free[slot_idx] = true; in InspectAllSlots()
985 size_t slot_idx = SlotIndex(slot); in InspectAllSlots() local
986 DCHECK_LT(slot_idx, num_slots); in InspectAllSlots()
987 is_free[slot_idx] = true; in InspectAllSlots()
990 for (size_t slot_idx = 0; slot_idx < num_slots; ++slot_idx) { in InspectAllSlots() local
[all …]
Drosalloc.h474 size_t slot_idx = offset_from_slot_base / bracket_size; in ToSlot() local
475 DCHECK_LT(slot_idx, numOfSlots[idx]); in ToSlot()
484 size_t slot_idx = offset_from_slot_base / bracket_size; in SlotIndex() local
485 DCHECK_LT(slot_idx, numOfSlots[idx]); in SlotIndex()
486 return slot_idx; in SlotIndex()