Home
last modified time | relevance | path

Searched refs:lastSlot (Results 1 – 3 of 3) sorted by relevance

/external/deqp/framework/delibs/depool/
DdePoolHash.h387 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; \
DdePoolSet.h395 TYPENAME##Slot* lastSlot = slot; \
396 while (lastSlot->nextSlot) \
398 prevSlot = lastSlot; \
399 lastSlot = lastSlot->nextSlot; \
402 slot->keys[elemNdx] = lastSlot->keys[lastSlot->numUsed-1]; \
403 lastSlot->numUsed--; \
405 if (lastSlot->numUsed == 0) \
412 lastSlot->nextSlot = set->slotFreeList; \
413 set->slotFreeList = lastSlot; \
/external/aac/libSBRdec/src/
Dsbrdecoder.cpp1150 int lastSlot, lastHdrSlot = 0, thisHdrSlot = 0; in sbrDecoder_Parse() local
1216 lastSlot = (hSbrElement->useFrameSlot > 0) ? hSbrElement->useFrameSlot - 1 in sbrDecoder_Parse()
1218 lastHdrSlot = hSbrElement->useHeaderSlot[lastSlot]; in sbrDecoder_Parse()