Lines Matching refs:slot_idx
853 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
995 uint8_t* slot_addr = slot_base + slot_idx * bracket_size; in InspectAllSlots()
996 if (!is_free[slot_idx]) { in InspectAllSlots()
1957 size_t slot_idx = SlotIndex(slot); in Verify() local
1958 DCHECK_LT(slot_idx, num_slots); in Verify()
1959 is_free[slot_idx] = true; in Verify()
1963 size_t slot_idx = SlotIndex(slot); in Verify() local
1964 DCHECK_LT(slot_idx, num_slots); in Verify()
1965 is_free[slot_idx] = true; in Verify()
1968 for (size_t slot_idx = 0; slot_idx < num_slots; ++slot_idx) { in Verify() local
1969 uint8_t* slot_addr = slot_base + slot_idx * bracket_size; in Verify()
1973 if (!is_free[slot_idx]) { in Verify()