HomeSort by relevance Sort by last modified time
    Searched defs:minIndex (Results 1 - 8 of 8) sorted by null

  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
IndexDataManager.h 26 UINT minIndex;
79 UINT lookupRange(intptr_t offset, GLsizei count, UINT *minIndex, UINT *maxIndex); // Returns the offset into the index buffer, or -1 if not found
80 void addRange(intptr_t offset, GLsizei count, UINT minIndex, UINT maxIndex, UINT streamOffset);
90 UINT minIndex;
IndexDataManager.cpp 70 void computeRange(const IndexType *indices, GLsizei count, GLuint *minIndex, GLuint *maxIndex)
72 *minIndex = indices[0];
77 if (*minIndex > indices[i]) *minIndex = indices[i];
82 void computeRange(GLenum type, const void *indices, GLsizei count, GLuint *minIndex, GLuint *maxIndex)
86 computeRange(static_cast<const GLubyte*>(indices), count, minIndex, maxIndex);
90 computeRange(static_cast<const GLuint*>(indices), count, minIndex, maxIndex);
94 computeRange(static_cast<const GLushort*>(indices), count, minIndex, maxIndex);
132 streamOffset = staticBuffer->lookupRange(offset, count, &translated->minIndex, &translated->maxIndex);
137 computeRange(type, indices, count, &translated->minIndex, &translated->maxIndex)
    [all...]
  /external/icu4c/test/letest/
cletest.c 696 le_int32 minIndex = 0x7FFFFFFF, maxIndex = -1;
705 if (ix < minIndex) {
706 minIndex = ix;
710 if (minIndex != charIndex) {
711 log_err("Bad minIndex for run %d on line %d: expected %d, got %d\n",
712 run, lineNumber, charIndex, minIndex);
letest.cpp     [all...]
  /frameworks/base/media/libstagefright/
MPEG2TSWriter.cpp 651 size_t minIndex = 0;
666 minIndex = i;
676 minTimeUs / 1E6, minIndex);
678 source = mSources.editItemAt(minIndex);
684 writeAccessUnit(minIndex, buffer);
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaByDayAdapter.java 421 int minIndex = 0;
432 minIndex = index;
439 return minIndex;
  /external/jdiff/src/jdiff/
RootDocToXML.java     [all...]
  /frameworks/base/core/jni/android/opengl/
util.cpp 102 int minIndex = 65536;
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 3005 milliseconds