Home
last modified time | relevance | path

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

/external/replicaisland/src/com/replica/replicaisland/
DNPCComponent.java34 private int mQueueTop; field in NPCComponent
92 mQueueTop = 0; in reset()
175 if (!mExecutingQueue && mQueueTop != mQueueBottom) { in update()
184 if (mQueueTop != mQueueBottom) { in update()
455 if (mQueueTop != mQueueBottom) { in nextCommand()
456 result = mQueuedCommands[mQueueTop]; in nextCommand()
463 if (mQueueTop != mQueueBottom) { in advanceQueue()
464 result = mQueuedCommands[mQueueTop]; in advanceQueue()
465 mQueueTop = (mQueueTop + 1) % COMMAND_QUEUE_SIZE; in advanceQueue()
472 if (nextSlot != mQueueTop) { // only comply if there is space left in the buffer in queueCommand()