Lines Matching refs:slot_idx
846 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
988 uint8_t* slot_addr = slot_base + slot_idx * bracket_size; in InspectAllSlots()
989 if (!is_free[slot_idx]) { in InspectAllSlots()
1948 size_t slot_idx = SlotIndex(slot); in Verify() local
1949 DCHECK_LT(slot_idx, num_slots); in Verify()
1950 is_free[slot_idx] = true; in Verify()
1954 size_t slot_idx = SlotIndex(slot); in Verify() local
1955 DCHECK_LT(slot_idx, num_slots); in Verify()
1956 is_free[slot_idx] = true; in Verify()
1959 for (size_t slot_idx = 0; slot_idx < num_slots; ++slot_idx) { in Verify() local
1960 uint8_t* slot_addr = slot_base + slot_idx * bracket_size; in Verify()
1964 if (!is_free[slot_idx]) { in Verify()