Searched refs:maxIndex (Results 1 - 25 of 25) sorted by relevance

/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
H A DIndexDataManager.cpp70 void computeRange(const IndexType *indices, GLsizei count, GLuint *minIndex, GLuint *maxIndex) argument
73 *maxIndex = indices[0];
78 if (*maxIndex < indices[i]) *maxIndex = indices[i];
82 void computeRange(GLenum type, const void *indices, GLsizei count, GLuint *minIndex, GLuint *maxIndex) argument
86 computeRange(static_cast<const GLubyte*>(indices), count, minIndex, maxIndex); local
90 computeRange(static_cast<const GLuint*>(indices), count, minIndex, maxIndex); local
94 computeRange(static_cast<const GLushort*>(indices), count, minIndex, maxIndex); local
132 streamOffset = staticBuffer->lookupRange(offset, count, &translated->minIndex, &translated->maxIndex);
137 computeRange(type, indices, count, &translated->minIndex, &translated->maxIndex);
360 lookupRange(intptr_t offset, GLsizei count, UINT *minIndex, UINT *maxIndex) argument
376 addRange(intptr_t offset, GLsizei count, UINT minIndex, UINT maxIndex, UINT streamOffset) argument
[all...]
H A DIndexDataManager.h27 UINT maxIndex; member in struct:gl::TranslatedIndexData
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);
91 UINT maxIndex; member in struct:gl::StaticIndexBuffer::IndexRange
/external/webkit/Source/WebCore/inspector/front-end/
H A DCSSCompletions.js66 var maxIndex = this._values.length - 1;
71 var middleIndex = (maxIndex + minIndex) >> 1;
79 maxIndex = middleIndex - 1;
80 } while (minIndex <= maxIndex);
/external/icu4c/test/cintltst/
H A Duenumtst.c39 int32_t maxIndex; member in struct:chArrayContext
60 return cont->maxIndex;
65 if(cont->currIndex >= cont->maxIndex) {
82 if(cont->currIndex >= cont->maxIndex) {
145 int32_t maxIndex; member in struct:uchArrayContext
161 return ucont->maxIndex;
166 if(ucont->currIndex >= ucont->maxIndex) {
202 cont->maxIndex = size;
273 ucont->maxIndex = size;
/external/webkit/Source/WebCore/html/canvas/
H A DWebGLBuffer.cpp177 return m_maxIndexCache[i].maxIndex;
186 m_maxIndexCache[i].maxIndex = value;
190 m_maxIndexCache[m_nextAvailableCacheEntry].maxIndex = value;
H A DWebGLBuffer.h86 int maxIndex; member in struct:WebCore::WebGLBuffer::MaxIndexCacheEntry
H A DWebGLRenderingContext.cpp1401 int maxIndex = elementArrayBuffer->getCachedMaxIndex(type); local
1402 if (maxIndex < 0) {
1408 maxIndex = max(maxIndex, static_cast<int>(p[i]));
1415 maxIndex = max(maxIndex, static_cast<int>(p[i]));
1421 elementArrayBuffer->setCachedMaxIndex(type, maxIndex);
1424 if (maxIndex >= 0) {
1427 numElementsRequired = maxIndex + 1;
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/
H A DTriStrip.java128 int maxIndex = 0;
132 if (in_indices[i] > maxIndex)
133 maxIndex = in_indices[i];
142 stripifier.stripify(tempIndices, cacheSize, minStripSize, maxIndex, tempStrips, tempFaces);
H A DStripifier.java124 int maxIndex) {
130 for (int i = 0; i < maxIndex + 1; i++)
1331 int maxIndex, StripInfoVec outStrips, FaceInfoVec outFaceList) {
1351 buildStripifyInfo(allFaceInfos, allEdgeInfos, maxIndex);
123 buildStripifyInfo(FaceInfoVec faceInfos, EdgeInfoVec edgeInfos, int maxIndex) argument
1330 stripify(IntVec in_indices, int in_cacheSize, int in_minStripLength, int maxIndex, StripInfoVec outStrips, FaceInfoVec outFaceList) argument
/external/icu4c/i18n/
H A Dplurrule.cpp527 int32_t maxIndex = 0; local
533 otherIndex = maxIndex;
535 ++maxIndex;
540 ++maxIndex;
544 if (NULL == newSampleInfo.allocateInsteadAndCopy(maxIndex)) {
560 newSampleInfo[maxIndex - 1] = 0; // unlimited
571 for (int i = 0, keywordsRemaining = maxIndex;
592 found = otherIndex == -1 ? maxIndex - 1 : otherIndex;
622 for (int i = 0, j = 0; i < maxIndex; ++i) {
632 for (int i = 0; i < maxIndex;
[all...]
H A Ducol_elm.cpp1860 int16_t maxIndex = (unorm_getFCD16(fcdTrieIndex, cMark) & 0xff ); local
1875 maxIndex = (int32_t)index[(unorm_getFCD16(fcdTrieIndex, cMark) & 0xff)-1];
1882 maxIndex = (int32_t)index[cClass-1];
1885 maxIndex=0;
1888 for ( i=0; i<maxIndex ; i++ ) {
/external/clang/utils/ABITest/
H A DABITestGen.py362 parser.add_option("", "--max", dest="maxIndex", metavar="N",
595 if opts.maxIndex is None:
597 opts.maxIndex = 10000000
599 opts.maxIndex = ftg.cardinality
600 opts.maxIndex = min(opts.maxIndex, ftg.cardinality)
601 opts.minIndex = max(0,min(opts.maxIndex-1, opts.minIndex))
603 opts.count = min(opts.count, opts.maxIndex-opts.minIndex)
663 index = opts.minIndex + int((opts.maxIndex-opts.minIndex) * random.random())
/external/webkit/Source/WebCore/rendering/mathml/
H A DRenderMathMLOperator.cpp165 const int maxIndex = WTF_ARRAY_LENGTH(stretchyCharacters); local
166 for (index++; index < maxIndex; index++) {
/external/webkit/Source/WebKit/mac/WebView/
H A DWebTextCompletionController.mm137 int maxIndex = -1;
143 maxIndex = i;
147 if (maxIndex >= 0) {
/external/icu4c/test/letest/
H A Dcletest.c696 le_int32 minIndex = 0x7FFFFFFF, maxIndex = -1; local
701 if (ix > maxIndex) {
702 maxIndex = ix;
716 charIndex = maxIndex + 1;
H A Dletest.cpp926 le_int32 minIndex = 0x7FFFFFFF, maxIndex = -1; local
931 if (ix > maxIndex) {
932 maxIndex = ix;
946 charIndex = maxIndex + 1;
/external/skia/src/core/
H A DSkPath.cpp1983 int maxIndex = index; local
1994 maxIndex = i;
1997 *maxIndexPtr = maxIndex;
2066 int maxIndex; local
2067 int minIndex = find_min_max_x_at_y(pts, index, n, &maxIndex);
2068 if (minIndex == maxIndex) {
2072 SkASSERT(pts[maxIndex].fY == pts[index].fY);
2073 SkASSERT(pts[minIndex].fX <= pts[maxIndex].fX);
2076 cross = minIndex - maxIndex;
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/
H A DFirstFitLocalCombiningAllocator.java1114 int maxIndex = -1;
1120 maxIndex = i;
1126 count[maxIndex] = 0;
/external/skia/src/gpu/
H A DGrDrawTarget.cpp728 int maxIndex = startIndex + indexCount;
741 if (maxIndex > maxValidIndex) {
/external/aac/libSBRenc/src/
H A Denv_est.cpp103 static const UCHAR maxIndex[2] = {9, 5}; variable
319 for (i = 0; i < maxIndex[ampRes]; i++) {
330 return panTable[ampRes][maxIndex[ampRes]-1] + sign * panTable[ampRes][panIndex];
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
H A DContext.cpp2649 GLsizei vertexCount = indexInfo.maxIndex - indexInfo.minIndex + 1;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 811 milliseconds