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

/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/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/skia/src/pathops/
H A DSkPathOpsCommon.cpp334 int minIndex = SkMin32(startIndex, endIndex); local
335 int sumWinding = current->windSum(minIndex);
/external/skia/src/pathops/
H A DSkPathOpsCommon.cpp334 int minIndex = SkMin32(startIndex, endIndex); local
335 int sumWinding = current->windSum(minIndex);
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
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.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/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/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/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/guava/guava/lib/
H A Djdiff.jarMETA-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API.java package jdiff ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
H A Dperformanceui.jarMETA-INF/MANIFEST.MF .project about.html plugin.xml build.properties images/FAIL ...
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/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/ ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 688 milliseconds