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

  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
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...]
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;
  /external/webkit/Source/WebCore/inspector/front-end/
CSSCompletions.js 67 var minIndex = 0;
71 var middleIndex = (maxIndex + minIndex) >> 1;
77 minIndex = middleIndex + 1;
80 } while (minIndex <= maxIndex);
  /external/jdiff/src/jdiff/
RootDocToXML.java     [all...]
  /development/tools/emulator/opengl/system/GLESv2_enc/
GL2Encoder.cpp 377 int minIndex = 0, maxIndex = 0;
382 GLUtils::minmax<unsigned char>((unsigned char *)indices, count, &minIndex, &maxIndex);
383 if (minIndex != 0) {
387 count, -minIndex);
392 GLUtils::minmax<unsigned short>((unsigned short *)indices, count, &minIndex, &maxIndex);
393 if (minIndex != 0) {
397 count, -minIndex);
404 ctx->sendVertexAttributes(minIndex, maxIndex - minIndex + 1);
  /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));
  /development/tools/emulator/opengl/system/GLESv1_enc/
GLEncoder.cpp 559 int minIndex = 0, maxIndex = 0;
564 GLUtils::minmax<unsigned char>((unsigned char *)indices, count, &minIndex, &maxIndex);
565 if (minIndex != 0) {
569 count, -minIndex);
574 GLUtils::minmax<unsigned short>((unsigned short *)indices, count, &minIndex, &maxIndex);
575 if (minIndex != 0) {
579 count, -minIndex);
586 ctx->sendVertexData(minIndex, maxIndex - minIndex + 1);
    [all...]
  /external/clang/utils/ABITest/
ABITestGen.py 359 parser.add_option("", "--min", dest="minIndex", metavar="N",
601 opts.minIndex = max(0,min(opts.maxIndex-1, opts.minIndex))
603 opts.count = min(opts.count, opts.maxIndex-opts.minIndex)
661 index = opts.minIndex + i
663 index = opts.minIndex + int((opts.maxIndex-opts.minIndex) * random.random())
  /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 497 int minIndex = 0;
551 minIndex = index;
566 return minIndex;
  /external/llvm/include/llvm/CodeGen/PBQP/
Math.h 86 unsigned minIndex() const {
HeuristicSolver.h 584 setSolution(nItr, v.minIndex());
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Context.cpp     [all...]
  /development/samples/NFCDemo/libs/
guava-10.0.1.jar 

Completed in 416 milliseconds