Searched defs:minIndex (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/awt/javax/imageio/event/
H A DIIOReadProgressListener.java86 * @param minIndex
89 void sequenceStarted(ImageReader source, int minIndex); argument
/frameworks/base/awt/javax/imageio/
H A DImageReader.java75 protected int minIndex; field in class:ImageReader
156 this.minIndex = 0;
247 return minIndex;
827 * @param minIndex
830 protected void processSequenceStarted(int minIndex) { argument
/frameworks/base/core/jni/android/opengl/
H A Dutil.cpp102 int minIndex = 65536; local
106 if ( index < minIndex ) {
107 minIndex = index;
118 transformedIndexCount = maxIndex - minIndex + 1;
127 const float* pSrc = pPositions + 3 * minIndex;
140 memcpy(pDest , pTransformed + 4 * (pIndices[i ] - minIndex), 4 * sizeof(float));
141 memcpy(pDest + 4, pTransformed + 4 * (pIndices[i + 1] - minIndex), 4 * sizeof(float));
142 memcpy(pDest + 8, pTransformed + 4 * (pIndices[i + 2] - minIndex), 4 * sizeof(float));

Completed in 53 milliseconds