Home
last modified time | relevance | path

Searched refs:nextSlot (Results 1 – 4 of 4) sorted by relevance

/external/deqp/framework/delibs/depool/
DdePoolHash.h74 TYPENAME##Slot* nextSlot; \
150 if (iter->curSlot->nextSlot) \
152 iter->curSlot = iter->curSlot->nextSlot; \
223 TYPENAME##Slot* nextSlot = slot->nextSlot; \
224 slot->nextSlot = hash->slotFreeList; \
227 slot = nextSlot; \
240 hash->slotFreeList = hash->slotFreeList->nextSlot; \
247 slot->nextSlot = DE_NULL; \
289 slot = slot->nextSlot; \
313 slot = slot->nextSlot; \
[all …]
DdePoolSet.h73 TYPENAME##Slot* nextSlot; \
149 if (iter->curSlot->nextSlot) \
151 iter->curSlot = iter->curSlot->nextSlot; \
231 TYPENAME##Slot* nextSlot = slot->nextSlot; \
232 slot->nextSlot = set->slotFreeList; \
235 slot = nextSlot; \
248 set->slotFreeList = set->slotFreeList->nextSlot; \
255 slot->nextSlot = DE_NULL; \
297 slot = slot->nextSlot; \
321 slot = slot->nextSlot; \
[all …]
DdePoolHashSet.h202 slot = slot->nextSlot; \
/external/replicaisland/src/com/replica/replicaisland/
DNPCComponent.java471 int nextSlot = (mQueueBottom + 1) % COMMAND_QUEUE_SIZE; in queueCommand() local
472 if (nextSlot != mQueueTop) { // only comply if there is space left in the buffer in queueCommand()
474 mQueueBottom = nextSlot; in queueCommand()