HomeSort by relevance Sort by last modified time
    Searched refs:indexOut (Results 1 - 2 of 2) sorted by null

  /external/jmonkeyengine/engine/src/android/com/jme3/util/
RingBuffer.java 16 private int indexOut = 0; // index of first element of queue
45 T item = buffer[indexOut];
46 buffer[indexOut] = null; // to help with garbage collection
48 indexOut = (indexOut + 1) % buffer.length; // wrap-around
  /sdk/emulator/opengl/host/libs/Translator/GLcommon/
PaletteTexture.cpp 149 int indexOut = i*colorSizeOut;
161 pixelsOut[indexOut] = c.red;
162 pixelsOut[indexOut+1] = c.green;
163 pixelsOut[indexOut+2] = c.blue;
165 pixelsOut[indexOut+3] = c.alpha;

Completed in 54 milliseconds