HomeSort by relevance Sort by last modified time
    Searched full:queuesize (Results 1 - 10 of 10) sorted by null

  /external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
InputSystemJme.java 229 int queueSize = inputQueue.size();
231 for (int i = 0; i < queueSize; i++) {
  /external/guava/guava/src/com/google/common/collect/
MinMaxPriorityQueue.java 226 private MinMaxPriorityQueue(Builder<? super E> builder, int queueSize) {
235 this.queue = new Object[queueSize];
936 /** There's no reason for the queueSize to ever be more than maxSize + 1 */
937 private static int capAtMaximumSize(int queueSize, int maximumSize) {
938 return Math.min(queueSize - 1, maximumSize) + 1; // don't overflow
  /external/jmonkeyengine/engine/src/core/com/jme3/input/
InputManager.java 758 int queueSize = inputQueue.size();
764 for (int j = 0; j < queueSize; j++) {
790 for (int i = 0; i < queueSize; i++) {
    [all...]
  /external/quake/quake/src/WinQuake/
net_comx.cpp 31 #define QUEUESIZE 8192
32 #define QUEUEMASK (QUEUESIZE - 1)
38 volatile byte data[QUEUESIZE];
  /external/sonivox/arm-wt-22k/lib_src/
jet.c 90 EAS_INLINE EAS_U8 JET_IncQueueIndex (EAS_U8 index, EAS_U8 queueSize)
92 if (++index == queueSize)
103 EAS_INLINE void JET_WriteQueue (EAS_U32 *pEventQueue, EAS_U8 *pWriteIndex, EAS_U8 readIndex, EAS_U8 queueSize, EAS_U32 event)
108 temp = JET_IncQueueIndex(*pWriteIndex, queueSize);
126 EAS_INLINE EAS_BOOL JET_ReadQueue (EAS_U32 *pEventQueue, EAS_U8 *pReadIndex, EAS_U8 writeIndex, EAS_U8 queueSize, EAS_U32 *pEvent)
135 *pReadIndex = JET_IncQueueIndex(*pReadIndex, queueSize);
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
UDPMessageProcessor.java 196 // It accepts packets if queuesize is < LOWAT. It drops
  /dalvik/vm/alloc/
Copying.cpp 203 size_t queueSize;
417 ++heapSource->queueSize;
770 heapSource->queueSize = 0;
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaWindowAdapter.java     [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/service/
ApiService.java     [all...]
  /prebuilt/common/jython/
jython.jar 

Completed in 5819 milliseconds