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

12

/external/skia/src/core/
H A DSkTileGrid.h109 int minIndex = tileCount; local
118 minIndex = tile;
129 for (int tile = minIndex; tile <= maxIndex; ++tile) {
H A DSkPath.cpp2521 int minIndex = index; local
2530 minIndex = i;
2537 return minIndex;
2589 int minIndex = find_min_max_x_at_y(pts, index, n, &maxIndex); local
2590 if (minIndex == maxIndex) {
2593 SkASSERT(pts[minIndex].fY == pts[index].fY);
2595 SkASSERT(pts[minIndex].fX <= pts[maxIndex].fX);
2598 cross = minIndex - maxIndex;
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A DIndexRangeCache.cpp23 unsigned int minIndex = indices[0]; local
28 if (minIndex > indices[i]) minIndex = indices[i];
32 return RangeUI(minIndex, maxIndex);
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Ddenseranges.cpp65 int32_t minIndex=-1; local
67 if(value<gapStarts[i] && (minIndex<0 || gapStarts[i]<minValue)) {
69 minIndex=i;
72 return minIndex;
/external/icu/icu4c/source/tools/toolutil/
H A Ddenseranges.cpp65 int32_t minIndex=-1; local
67 if(value<gapStarts[i] && (minIndex<0 || gapStarts[i]<minValue)) {
69 minIndex=i;
72 return minIndex;
/external/jdiff/src/jdiff/
H A DRootDocToXML.java994 index = minIndex(index, text.indexOf("? ", fromindex));
995 index = minIndex(index, text.indexOf("?\t", fromindex));
996 index = minIndex(index, text.indexOf("?\n", fromindex));
997 index = minIndex(index, text.indexOf("?\r", fromindex));
998 index = minIndex(index, text.indexOf("?\f", fromindex));
999 index = minIndex(index, text.indexOf("! ", fromindex));
1000 index = minIndex(index, text.indexOf("!\t", fromindex));
1001 index = minIndex(index, text.indexOf("!\n", fromindex));
1002 index = minIndex(index, text.indexOf("!\r", fromindex));
1003 index = minIndex(inde
1057 public static int minIndex(int i, int j) { method in class:RootDocToXML
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DCSSMetadata.js905 var minIndex = 0; variable
909 var middleIndex = (maxIndex + minIndex) >> 1;
915 minIndex = middleIndex + 1;
918 } while (minIndex <= maxIndex);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DUtils.java150 int minIndex = 0;
159 minIndex = i;
162 return minIndex;
/external/guava/guava/src/com/google/common/collect/
H A DMinMaxPriorityQueue.java577 int minIndex = index;
579 if (compareElements(i, minIndex) < 0) {
580 minIndex = i;
583 return minIndex;
/external/clang/utils/ABITest/
H A DABITestGen.py359 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/chromium_org/third_party/icu/source/test/letest/
H A Dcletest.c696 le_int32 minIndex = 0x7FFFFFFF, maxIndex = -1; local
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);
H A Dletest.cpp927 le_int32 minIndex = 0x7FFFFFFF, maxIndex = -1; local
936 if (ix < minIndex) {
937 minIndex = ix;
941 if (minIndex != charIndex) {
942 log_err("Bad minIndex for run %d on line %d: expected %d, got %d\n",
943 run, lineNumber, charIndex, minIndex);
/external/icu/icu4c/source/test/letest/
H A Dcletest.c697 le_int32 minIndex = 0x7FFFFFFF, maxIndex = -1; local
706 if (ix < minIndex) {
707 minIndex = ix;
711 if (minIndex != charIndex) {
712 log_err("Bad minIndex for run %d on line %d: expected %d, got %d\n",
713 run, lineNumber, charIndex, minIndex);
H A Dletest.cpp928 le_int32 minIndex = 0x7FFFFFFF, maxIndex = -1; local
937 if (ix < minIndex) {
938 minIndex = ix;
942 if (minIndex != charIndex) {
943 log_err("Bad minIndex for run %d on line %d: expected %d, got %d\n",
944 run, lineNumber, charIndex, minIndex);
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
H A DRenderer11.h209 void drawLineLoop(GLsizei count, GLenum type, const GLvoid *indices, int minIndex, gl::Buffer *elementArrayBuffer);
210 void drawTriangleFan(GLsizei count, GLenum type, const GLvoid *indices, int minIndex, gl::Buffer *elementArrayBuffer, int instances);
H A DRenderer11.cpp1076 int minIndex = static_cast<int>(indexInfo.indexRange.start); local
1080 drawLineLoop(count, type, indices, minIndex, elementArrayBuffer);
1084 drawTriangleFan(count, type, indices, minIndex, elementArrayBuffer, instances);
1088 mDeviceContext->DrawIndexedInstanced(count, instances, 0, -minIndex, 0);
1092 mDeviceContext->DrawIndexed(count, 0, -minIndex);
1096 void Renderer11::drawLineLoop(GLsizei count, GLenum type, const GLvoid *indices, int minIndex, gl::Buffer *elementArrayBuffer) argument
1201 mDeviceContext->DrawIndexed(count + 1, 0, -minIndex);
1204 void Renderer11::drawTriangleFan(GLsizei count, GLenum type, const GLvoid *indices, int minIndex, gl::Buffer *elementArrayBuffer, int instances) argument
1317 mDeviceContext->DrawIndexedInstanced(numTris * 3, instances, 0, -minIndex, 0);
1321 mDeviceContext->DrawIndexed(numTris * 3, 0, -minIndex);
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A DRenderer9.h212 void drawLineLoop(GLsizei count, GLenum type, const GLvoid *indices, int minIndex, gl::Buffer *elementArrayBuffer);
213 void drawIndexedPoints(GLsizei count, GLenum type, const GLvoid *indices, int minIndex, gl::Buffer *elementArrayBuffer);
H A DRenderer9.cpp1346 int minIndex = static_cast<int>(indexInfo.indexRange.start); local
1350 drawIndexedPoints(count, type, indices, minIndex, elementArrayBuffer);
1354 drawLineLoop(count, type, indices, minIndex, elementArrayBuffer);
1361 mDevice->DrawIndexedPrimitive(mPrimitiveType, -minIndex, minIndex, vertexCount, indexInfo.startIndex, mPrimitiveCount);
1366 void Renderer9::drawLineLoop(GLsizei count, GLenum type, const GLvoid *indices, int minIndex, gl::Buffer *elementArrayBuffer) argument
1556 mDevice->DrawIndexedPrimitive(D3DPT_LINESTRIP, -minIndex, minIndex, count, startIndex, count);
1560 static void drawPoints(IDirect3DDevice9* device, GLsizei count, const GLvoid *indices, int minIndex) argument
1564 unsigned int indexValue = static_cast<unsigned int>(static_cast<const T*>(indices)[i]) - minIndex;
1569 drawIndexedPoints(GLsizei count, GLenum type, const GLvoid *indices, int minIndex, gl::Buffer *elementArrayBuffer) argument
[all...]
/external/llvm/include/llvm/CodeGen/PBQP/
H A DReductionRules.h183 s.setSelection(NId, v.minIndex());
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dprogram_parse.y2339 const GLint minIndex = 0;
2340 ASSERT(index >= minIndex);
2341 (void) minIndex;
2381 const GLint minIndex = -(1 << INST_INDEX_BITS);
2383 ASSERT(index >= minIndex);
2384 (void) minIndex;
/external/mesa3d/src/mesa/program/
H A Dprogram_parse.y2339 const GLint minIndex = 0;
2340 ASSERT(index >= minIndex);
2341 (void) minIndex;
2381 const GLint minIndex = -(1 << INST_INDEX_BITS);
2383 ASSERT(index >= minIndex);
2384 (void) minIndex;
/external/chromium_org/third_party/skia/src/core/
H A DSkPath.cpp2482 int minIndex = index; local
2491 minIndex = i;
2498 return minIndex;
2550 int minIndex = find_min_max_x_at_y(pts, index, n, &maxIndex); local
2551 if (minIndex == maxIndex) {
2554 SkASSERT(pts[minIndex].fY == pts[index].fY);
2556 SkASSERT(pts[minIndex].fX <= pts[maxIndex].fX);
2559 cross = minIndex - maxIndex;
/external/pdfium/core/src/fpdftext/
H A Dfpdf_text_int.cpp487 int minIndex = -2;
491 minIndex = -1;
499 minIndex = index;
532 minIndex = index;
540 return minIndex;
542 minIndex = -2;
545 return minIndex;
550 minIndex = index;
584 minIndex = index;
588 return minIndex;
[all...]
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/program/
H A Dprogram_parse.tab.c5481 const GLint minIndex = 0; local
5482 ASSERT(index >= minIndex);
5483 (void) minIndex;
5523 const GLint minIndex = -(1 << INST_INDEX_BITS); local
5525 ASSERT(index >= minIndex);
5526 (void) minIndex;
/external/chromium_org/third_party/skia/src/pathops/
H A DSkPathOpsCommon.cpp334 int minIndex = SkMin32(startIndex, endIndex); local
335 int sumWinding = current->windSum(minIndex);

Completed in 1991 milliseconds

12