• Home
  • Raw
  • Download

Lines Matching refs:slotNdx

125 		int slotNdx			= 0;					\
126 while (slotNdx < slotTableSize) \
128 if (hash->slotTable[slotNdx]) \
130 slotNdx++; \
132 DE_ASSERT(slotNdx < slotTableSize); \
133 iter->curSlotIndex = slotNdx; \
134 iter->curSlot = hash->slotTable[slotNdx]; \
217 int slotNdx; \
218 for (slotNdx = 0; slotNdx < hash->slotTableSize; slotNdx++) \
220 TYPENAME##Slot* slot = hash->slotTable[slotNdx]; \
229 hash->slotTable[slotNdx] = DE_NULL; \
262 int slotNdx; \
267 for (slotNdx = 0; slotNdx < oldSlotTableSize; slotNdx++) \
268 newSlotTable[slotNdx] = oldSlotTable[slotNdx]; \
270 for (slotNdx = oldSlotTableSize; slotNdx < newSlotTableSize; slotNdx++) \
271 newSlotTable[slotNdx] = DE_NULL; \
276 for (slotNdx = 0; slotNdx < oldSlotTableSize; slotNdx++) \
278 TYPENAME##Slot* slot = oldSlotTable[slotNdx]; \
279 newSlotTable[slotNdx] = DE_NULL; \
301 int slotNdx = (int)(HASHFUNC(key) & (deUint32)(hash->slotTableSize - 1)); \
302 TYPENAME##Slot* slot = hash->slotTable[slotNdx]; \
303 DE_ASSERT(deInBounds32(slotNdx, 0, hash->slotTableSize)); \
322 int slotNdx; \
331 slotNdx = (int)(HASHFUNC(key) & (deUint32)(hash->slotTableSize - 1)); \
332 DE_ASSERT(slotNdx >= 0 && slotNdx < hash->slotTableSize); \
333 slot = hash->slotTable[slotNdx]; \
339 hash->slotTable[slotNdx] = slot; \
369 int slotNdx; \
374 slotNdx = (int)(HASHFUNC(key) & (deUint32)(hash->slotTableSize - 1)); \
375 DE_ASSERT(slotNdx >= 0 && slotNdx < hash->slotTableSize); \
376 slot = hash->slotTable[slotNdx]; \
403 hash->slotTable[slotNdx] = DE_NULL; \
432 int slotNdx; \
438 for (slotNdx = 0; slotNdx < hash->slotTableSize; slotNdx++) \
440 const HASHTYPENAME##Slot* slot = hash->slotTable[slotNdx]; \