/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/GLESv1_enc/ |
GLEncoder.cpp | 476 int minIndex = 0, maxIndex = 0; 481 GLUtils::minmax<unsigned char>((unsigned char *)indices, count, &minIndex, &maxIndex); 482 if (minIndex != 0) { 486 count, -minIndex); 491 GLUtils::minmax<unsigned short>((unsigned short *)indices, count, &minIndex, &maxIndex); 492 if (minIndex != 0) { 496 count, -minIndex); 503 ctx->sendVertexData(minIndex, maxIndex - minIndex + 1);
|
/development/tools/emulator/opengl/system/GLESv2_enc/ |
GL2Encoder.cpp | 374 int minIndex = 0, maxIndex = 0; 379 GLUtils::minmax<unsigned char>((unsigned char *)indices, count, &minIndex, &maxIndex); 380 if (minIndex != 0) { 384 count, -minIndex); 389 GLUtils::minmax<unsigned short>((unsigned short *)indices, count, &minIndex, &maxIndex); 390 if (minIndex != 0) { 394 count, -minIndex); 401 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));
|
/packages/apps/Calendar/src/com/android/calendar/agenda/ |
AgendaByDayAdapter.java | 421 int minIndex = 0; 432 minIndex = index; 439 return minIndex;
|
/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);
|
/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...] |