Home
last modified time | relevance | path

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

/external/replicaisland/src/com/replica/replicaisland/
DNPCComponent.java73 private static final int COMMAND_QUEUE_SIZE = 16; field in NPCComponent
78 mQueuedCommands = new int[COMMAND_QUEUE_SIZE]; in NPCComponent()
465 mQueueTop = (mQueueTop + 1) % COMMAND_QUEUE_SIZE; in advanceQueue()
471 int nextSlot = (mQueueBottom + 1) % COMMAND_QUEUE_SIZE; in queueCommand()