Home
last modified time | relevance | path

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

/external/replicaisland/src/com/replica/replicaisland/
DNPCComponent.java35 private int mQueueBottom; field in NPCComponent
93 mQueueBottom = 0; in reset()
175 if (!mExecutingQueue && mQueueTop != mQueueBottom) { in update()
184 if (mQueueTop != mQueueBottom) { in update()
455 if (mQueueTop != mQueueBottom) { in nextCommand()
463 if (mQueueTop != mQueueBottom) { in advanceQueue()
471 int nextSlot = (mQueueBottom + 1) % COMMAND_QUEUE_SIZE; in queueCommand()
473 mQueuedCommands[mQueueBottom] = hotspot; in queueCommand()
474 mQueueBottom = nextSlot; in queueCommand()