Lines Matching refs:lastSlot
387 TYPENAME##Slot* lastSlot = slot; \
388 while (lastSlot->nextSlot) \
390 prevSlot = lastSlot; \
391 lastSlot = lastSlot->nextSlot; \
394 slot->keys[elemNdx] = lastSlot->keys[lastSlot->numUsed-1]; \
395 slot->values[elemNdx] = lastSlot->values[lastSlot->numUsed-1]; \
396 lastSlot->numUsed--; \
398 if (lastSlot->numUsed == 0) \
405 lastSlot->nextSlot = hash->slotFreeList; \
406 hash->slotFreeList = lastSlot; \