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

12

/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A DIndexRangeCache.h45 unsigned int minIndex; member in struct:rx::IndexRangeCache::IndexBounds
H A DIndexDataManager.h35 unsigned int minIndex; member in struct:rx::TranslatedIndexData
H A DIndexDataManager.cpp98 static void computeRange(const IndexType *indices, GLsizei count, GLuint *minIndex, GLuint *maxIndex) argument
100 *minIndex = indices[0];
105 if (*minIndex > indices[i]) *minIndex = indices[i];
110 static void computeRange(GLenum type, const GLvoid *indices, GLsizei count, GLuint *minIndex, GLuint *maxIndex) argument
114 computeRange(static_cast<const GLubyte*>(indices), count, minIndex, maxIndex); local
118 computeRange(static_cast<const GLuint*>(indices), count, minIndex, maxIndex); local
122 computeRange(static_cast<const GLushort*>(indices), count, minIndex, maxIndex); local
185 if (!buffer->getIndexRangeCache()->findRange(type, offset, count, &translated->minIndex,
188 computeRange(type, indices, count, &translated->minIndex,
[all...]
/external/chromium_org/third_party/skia/src/utils/
H A DSkTextureCompressor.cpp36 int minIndex = 0; local
41 minIndex = i;
46 SkASSERT(minIndex >= 0 && minIndex < 8);
47 return (static_cast<uint32_t>(errSq) << 8) | static_cast<uint32_t>(minIndex);
/external/chromium_org/third_party/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/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/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.cpp926 le_int32 minIndex = 0x7FFFFFFF, maxIndex = -1; local
935 if (ix < minIndex) {
936 minIndex = ix;
940 if (minIndex != charIndex) {
941 log_err("Bad minIndex for run %d on line %d: expected %d, got %d\n",
942 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/d3d11/
H A DRenderer11.cpp1262 drawLineLoop(count, type, indices, indexInfo.minIndex, elementArrayBuffer);
1266 drawTriangleFan(count, type, indices, indexInfo.minIndex, elementArrayBuffer, instances);
1270 mDeviceContext->DrawIndexedInstanced(count, instances, 0, -static_cast<int>(indexInfo.minIndex), 0);
1274 mDeviceContext->DrawIndexed(count, 0, -static_cast<int>(indexInfo.minIndex));
1278 void Renderer11::drawLineLoop(GLsizei count, GLenum type, const GLvoid *indices, int minIndex, gl::Buffer *elementArrayBuffer) argument
1380 mDeviceContext->DrawIndexed(count + 1, 0, -minIndex);
1383 void Renderer11::drawTriangleFan(GLsizei count, GLenum type, const GLvoid *indices, int minIndex, gl::Buffer *elementArrayBuffer, int instances) argument
1493 mDeviceContext->DrawIndexedInstanced(numTris * 3, instances, 0, -minIndex, 0);
1497 mDeviceContext->DrawIndexed(numTris * 3, 0, -minIndex);
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d9/
H A DRenderer9.cpp1497 drawIndexedPoints(count, type, indices, indexInfo.minIndex, elementArrayBuffer);
1501 drawLineLoop(count, type, indices, indexInfo.minIndex, elementArrayBuffer);
1507 GLsizei vertexCount = indexInfo.maxIndex - indexInfo.minIndex + 1;
1508 mDevice->DrawIndexedPrimitive(mPrimitiveType, -(INT)indexInfo.minIndex, indexInfo.minIndex, vertexCount, indexInfo.startIndex, mPrimitiveCount);
1513 void Renderer9::drawLineLoop(GLsizei count, GLenum type, const GLvoid *indices, int minIndex, gl::Buffer *elementArrayBuffer) argument
1697 mDevice->DrawIndexedPrimitive(D3DPT_LINESTRIP, -minIndex, minIndex, count, startIndex, count);
1701 static void drawPoints(IDirect3DDevice9* device, GLsizei count, const GLvoid *indices, int minIndex) argument
1705 unsigned int indexValue = static_cast<unsigned int>(static_cast<const T*>(indices)[i]) - minIndex;
1710 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/WebKit/Source/devtools/front_end/sdk/
H A DCSSMetadata.js914 var minIndex = 0; variable
918 var middleIndex = (maxIndex + minIndex) >> 1;
924 minIndex = middleIndex + 1;
927 } 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/ ...

Completed in 722 milliseconds

12