Lines Matching defs:slotNdx
409 const size_t slotNdx = ptrToSlotIndex[record.data.allocation.returnedPtr];
410 if (!allocations[slotNdx].isLive)
412 allocations[slotNdx].isLive = true;
413 allocations[slotNdx].record = record;
463 const size_t slotNdx = ptrToSlotIndex[record.data.reallocation.returnedPtr];
464 if (!allocations[slotNdx].isLive)
466 allocations[slotNdx].isLive = true;
467 allocations[slotNdx].record = record;
500 const size_t slotNdx = ptrToSlotIndex[record.data.reallocation.returnedPtr];
501 DE_ASSERT(!allocations[slotNdx].isLive);
502 allocations[slotNdx].isLive = true;
503 allocations[slotNdx].record = record;
517 const size_t slotNdx = ptrToSlotIndex[record.data.free.mem];
519 if (allocations[slotNdx].isLive)
520 allocations[slotNdx].isLive = false;