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

12

/external/swiftshader/src/OpenGL/libGL/
H A DIndexDataManager.h33 unsigned int minIndex; member in struct:gl::TranslatedIndexData
H A DIndexDataManager.cpp67 void computeRange(const IndexType *indices, GLsizei count, GLuint *minIndex, GLuint *maxIndex) argument
69 *minIndex = indices[0];
74 if(*minIndex > indices[i]) *minIndex = indices[i];
79 void computeRange(GLenum type, const void *indices, GLsizei count, GLuint *minIndex, GLuint *maxIndex) argument
83 computeRange(static_cast<const GLubyte*>(indices), count, minIndex, maxIndex); local
87 computeRange(static_cast<const GLuint*>(indices), count, minIndex, maxIndex); local
91 computeRange(static_cast<const GLushort*>(indices), count, minIndex, maxIndex); local
130 computeRange(type, indices, count, &translated->minIndex, &translated->maxIndex);
152 computeRange(type, indices, count, &translated->minIndex,
[all...]
/external/swiftshader/src/OpenGL/libGLES_CM/
H A DIndexDataManager.h30 unsigned int minIndex; member in struct:es1::TranslatedIndexData
H A DIndexDataManager.cpp63 void computeRange(const IndexType *indices, GLsizei count, GLuint *minIndex, GLuint *maxIndex) argument
65 *minIndex = indices[0];
70 if(*minIndex > indices[i]) *minIndex = indices[i];
75 void computeRange(GLenum type, const void *indices, GLsizei count, GLuint *minIndex, GLuint *maxIndex) argument
79 computeRange(static_cast<const GLubyte*>(indices), count, minIndex, maxIndex); local
83 computeRange(static_cast<const GLushort*>(indices), count, minIndex, maxIndex); local
113 computeRange(type, indices, count, &translated->minIndex, &translated->maxIndex);
135 computeRange(type, indices, count, &translated->minIndex, &translated->maxIndex);
/external/swiftshader/src/OpenGL/libGLESv2/
H A DIndexDataManager.h32 unsigned int minIndex; member in struct:es2::TranslatedIndexData
H A DIndexDataManager.cpp196 void computeRange(const IndexType *indices, GLsizei count, GLuint *minIndex, GLuint *maxIndex, std::vector<GLsizei>* restartIndices) argument
199 *minIndex = MAX_ELEMENTS_INDICES;
208 if(*minIndex > indices[i]) *minIndex = indices[i];
213 void computeRange(GLenum type, const void *indices, GLsizei count, GLuint *minIndex, GLuint *maxIndex, std::vector<GLsizei>* restartIndices) argument
217 computeRange(static_cast<const GLubyte*>(indices), count, minIndex, maxIndex, restartIndices); local
221 computeRange(static_cast<const GLuint*>(indices), count, minIndex, maxIndex, restartIndices); local
225 computeRange(static_cast<const GLushort*>(indices), count, minIndex, maxIndex, restartIndices); local
293 computeRange(type, indices, count, &translated->minIndex, &translated->maxIndex, restartIndices);
354 if(translated->minIndex < star
[all...]
/external/icu/icu4c/source/tools/toolutil/
H A Ddenseranges.cpp67 int32_t minIndex=-1; local
69 if(value<gapStarts[i] && (minIndex<0 || gapStarts[i]<minValue)) {
71 minIndex=i;
74 return minIndex;
/external/skia/src/pathops/
H A DSkPathOpsCurve.cpp36 int minIndex = -1; local
42 minIndex = index;
45 if (minIndex < 0) {
52 return SkPinT(i[0][minIndex]);
/external/skqp/src/pathops/
H A DSkPathOpsCurve.cpp36 int minIndex = -1; local
42 minIndex = index;
45 if (minIndex < 0) {
52 return SkPinT(i[0][minIndex]);
/external/jdiff/src/jdiff/
H A DRootDocToXML.java995 index = minIndex(index, text.indexOf("? ", fromindex));
996 index = minIndex(index, text.indexOf("?\t", fromindex));
997 index = minIndex(index, text.indexOf("?\n", fromindex));
998 index = minIndex(index, text.indexOf("?\r", fromindex));
999 index = minIndex(index, text.indexOf("?\f", fromindex));
1000 index = minIndex(index, text.indexOf("! ", fromindex));
1001 index = minIndex(index, text.indexOf("!\t", fromindex));
1002 index = minIndex(index, text.indexOf("!\n", fromindex));
1003 index = minIndex(index, text.indexOf("!\r", fromindex));
1004 index = minIndex(inde
1058 public static int minIndex(int i, int j) { method in class:RootDocToXML
[all...]
/external/skia/src/codec/
H A DSkIcoCodec.cpp221 int32_t minIndex = -1; local
228 minIndex = i;
231 SkASSERT(minIndex >= 0);
233 return fEmbeddedCodecs->operator[](minIndex)->getInfo().dimensions();
/external/skqp/src/codec/
H A DSkIcoCodec.cpp221 int32_t minIndex = -1; local
228 minIndex = i;
231 SkASSERT(minIndex >= 0);
233 return fEmbeddedCodecs->operator[](minIndex)->getInfo().dimensions();
/external/icu/icu4c/source/test/letest/
H A Dcletest.c701 le_int32 minIndex = 0x7FFFFFFF, maxIndex = -1; local
710 if (ix < minIndex) {
711 minIndex = ix;
715 if (minIndex != charIndex) {
716 log_err("Bad minIndex for run %d on line %d: expected %d, got %d\n",
717 run, lineNumber, charIndex, minIndex);
H A Dletest.cpp931 le_int32 minIndex = 0x7FFFFFFF, maxIndex = -1; local
940 if (ix < minIndex) {
941 minIndex = ix;
945 if (minIndex != charIndex) {
946 log_err("Bad minIndex for run %d on line %d: expected %d, got %d\n",
947 run, lineNumber, charIndex, minIndex);
/external/swiftshader/src/D3D9/
H A DDirect3DDevice9.cpp996 long Direct3DDevice9::DrawIndexedPrimitive(D3DPRIMITIVETYPE type, int baseVertexIndex, unsigned int minIndex, unsigned int numVertices, unsigned int startIndex, unsigned int primitiveCount) argument
1000 TRACE("D3DPRIMITIVETYPE type = %d, int baseVertexIndex = %d, unsigned int minIndex = %d, unsigned int numVertices = %d, unsigned int startIndex = %d, unsigned int primitiveCount = %d", type, baseVertexIndex, minIndex, numVertices, startIndex, primitiveCount);
1064 long Direct3DDevice9::DrawIndexedPrimitiveUP(D3DPRIMITIVETYPE type, unsigned int minIndex, unsigned int numVertices, unsigned int primitiveCount, const void *indexData, D3DFORMAT indexDataFormat, const void *vertexStreamZeroData, unsigned int vertexStreamZeroStride) argument
1068 TRACE("D3DPRIMITIVETYPE type = %d, unsigned int minIndex = %d, unsigned int numVertices = %d, unsigned int primitiveCount = %d, const void *indexData = 0x%0.8p, D3DFORMAT indexDataFormat = %d, const void *vertexStreamZeroData = 0x%0.8p, unsigned int vertexStreamZeroStride = %d", type, minIndex, numVertices, primitiveCount, indexData, indexDataFormat, vertexStreamZeroData, vertexStreamZeroStride);
1075 int length = (minIndex + numVertices) * vertexStreamZeroStride;
H A DDirect3DDevice9Ex.cpp229 long Direct3DDevice9Ex::DrawIndexedPrimitive(D3DPRIMITIVETYPE type, int baseVertexIndex, unsigned int minIndex, unsigned int numVertices, unsigned int startIndex, unsigned int primitiveCount) argument
231 TRACE("D3DPRIMITIVETYPE type = %d, int baseVertexIndex = %d, unsigned int minIndex = %d, unsigned int numVertices = %d, unsigned int startIndex = %d, unsigned int primitiveCount = %d", type, baseVertexIndex, minIndex, numVertices, startIndex, primitiveCount);
233 return Direct3DDevice9::DrawIndexedPrimitive(type, baseVertexIndex, minIndex, numVertices, startIndex, primitiveCount);
236 long Direct3DDevice9Ex::DrawIndexedPrimitiveUP(D3DPRIMITIVETYPE type, unsigned int minIndex, unsigned int numVertices, unsigned int primitiveCount, const void *indexData, D3DFORMAT indexDataFormat, const void *vertexStreamZeroData, unsigned int vertexStreamZeroStride) argument
238 TRACE("D3DPRIMITIVETYPE type = %d, unsigned int minIndex = %d, unsigned int numVertices = %d, unsigned int primitiveCount = %d, const void *indexData = 0x%0.8p, D3DFORMAT indexDataFormat = %d, const void *vertexStreamZeroData = 0x%0.8p, unsigned int vertexStreamZeroStride = %d", type, minIndex, numVertices, primitiveCount, indexData, indexDataFormat, vertexStreamZeroData, vertexStreamZeroStride);
240 return Direct3DDevice9::DrawIndexedPrimitiveUP(type, minIndex, numVertices, primitiveCount, indexData, indexDataFormat, vertexStreamZeroData, vertexStreamZeroStride);
/external/swiftshader/src/D3D8/
H A DDirect3DDevice8.cpp889 long Direct3DDevice8::DrawIndexedPrimitive(D3DPRIMITIVETYPE type, unsigned int minIndex, unsigned int numVertices, unsigned int startIndex, unsigned int primitiveCount) argument
958 long Direct3DDevice8::DrawIndexedPrimitiveUP(D3DPRIMITIVETYPE type, unsigned int minIndex, unsigned int numVertices, unsigned int primitiveCount, const void *indexData, D3DFORMAT indexDataFormat, const void *vertexStreamZeroData, unsigned int vertexStreamZeroStride) argument
967 int length = (minIndex + numVertices) * vertexStreamZeroStride;
/external/skia/src/core/
H A DSkPath.cpp2647 int minIndex = index; local
2656 minIndex = i;
2663 return minIndex;
2715 int minIndex = find_min_max_x_at_y(pts, index, n, &maxIndex); local
2716 if (minIndex == maxIndex) {
2719 SkASSERT(pts[minIndex].fY == pts[index].fY);
2721 SkASSERT(pts[minIndex].fX <= pts[maxIndex].fX);
2724 cross = minIndex - maxIndex;
/external/skqp/src/core/
H A DSkPath.cpp2763 int minIndex = index; local
2772 minIndex = i;
2779 return minIndex;
2831 int minIndex = find_min_max_x_at_y(pts, index, n, &maxIndex); local
2832 if (minIndex == maxIndex) {
2835 SkASSERT(pts[minIndex].fY == pts[index].fY);
2837 SkASSERT(pts[minIndex].fX <= pts[maxIndex].fX);
2840 cross = minIndex - maxIndex;
/external/guava/guava/lib/
H A Djdiff.jarMETA-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API.java package jdiff ...
/external/guice/lib/build/jdiff/
H A Djdiff.jarMETA-INF/ META-INF/MANIFEST.MF jdiff/ jdiff/API.class API.java package jdiff ...
/external/slf4j/log4j-over-slf4j/compatibility/lib/
H A Dlogback-core-0.9.8-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF ch/ ch/qos/ ch/qos/logback/ ch/qos/logback/core/ ...
H A Dlog4j-1.3alpha-8.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/log4j/ org/apache/log4j/Appender ...
/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/ ...

Completed in 676 milliseconds

12