Home
last modified time | relevance | path

Searched refs:minIndex (Results 1 – 25 of 44) sorted by relevance

12

/external/swiftshader/src/OpenGL/libGLESv2/
DIndexDataManager.cpp67 void computeRange(const IndexType *indices, GLsizei count, GLuint *minIndex, GLuint *maxIndex) in computeRange() argument
69 *minIndex = indices[0]; in computeRange()
74 if(*minIndex > indices[i]) *minIndex = indices[i]; in computeRange()
79 void computeRange(GLenum type, const void *indices, GLsizei count, GLuint *minIndex, GLuint *maxInd… in computeRange() argument
83 computeRange(static_cast<const GLubyte*>(indices), count, minIndex, maxIndex); in computeRange()
87 computeRange(static_cast<const GLuint*>(indices), count, minIndex, maxIndex); in computeRange()
91 computeRange(static_cast<const GLushort*>(indices), count, minIndex, maxIndex); in computeRange()
121 computeRange(type, indices, count, &translated->minIndex, &translated->maxIndex); in prepareIndexData()
143 computeRange(type, indices, count, &translated->minIndex, &translated->maxIndex); in prepareIndexData()
149 if(translated->minIndex < start || translated->maxIndex > end) in prepareIndexData()
[all …]
DIndexDataManager.h30 unsigned int minIndex; member
/external/swiftshader/src/OpenGL/libGL/
DIndexDataManager.cpp67 void computeRange(const IndexType *indices, GLsizei count, GLuint *minIndex, GLuint *maxIndex) in computeRange() argument
69 *minIndex = indices[0]; in computeRange()
74 if(*minIndex > indices[i]) *minIndex = indices[i]; in computeRange()
79 void computeRange(GLenum type, const void *indices, GLsizei count, GLuint *minIndex, GLuint *maxInd… in computeRange() argument
83 computeRange(static_cast<const GLubyte*>(indices), count, minIndex, maxIndex); in computeRange()
87 computeRange(static_cast<const GLuint*>(indices), count, minIndex, maxIndex); in computeRange()
91 computeRange(static_cast<const GLushort*>(indices), count, minIndex, maxIndex); in computeRange()
130 computeRange(type, indices, count, &translated->minIndex, &translated->maxIndex); in prepareIndexData()
152 computeRange(type, indices, count, &translated->minIndex, &translated->maxIndex); in prepareIndexData()
DIndexDataManager.h33 unsigned int minIndex; member
/external/swiftshader/src/OpenGL/libGLES_CM/
DIndexDataManager.cpp63 void computeRange(const IndexType *indices, GLsizei count, GLuint *minIndex, GLuint *maxIndex) in computeRange() argument
65 *minIndex = indices[0]; in computeRange()
70 if(*minIndex > indices[i]) *minIndex = indices[i]; in computeRange()
75 void computeRange(GLenum type, const void *indices, GLsizei count, GLuint *minIndex, GLuint *maxInd… in computeRange() argument
79 computeRange(static_cast<const GLubyte*>(indices), count, minIndex, maxIndex); in computeRange()
83 computeRange(static_cast<const GLushort*>(indices), count, minIndex, maxIndex); in computeRange()
113 computeRange(type, indices, count, &translated->minIndex, &translated->maxIndex); in prepareIndexData()
135 computeRange(type, indices, count, &translated->minIndex, &translated->maxIndex); in prepareIndexData()
DIndexDataManager.h30 unsigned int minIndex; member
/external/jdiff/src/jdiff/
DRootDocToXML.java995 index = minIndex(index, text.indexOf("? ", fromindex)); in endOfFirstSentence()
996 index = minIndex(index, text.indexOf("?\t", fromindex)); in endOfFirstSentence()
997 index = minIndex(index, text.indexOf("?\n", fromindex)); in endOfFirstSentence()
998 index = minIndex(index, text.indexOf("?\r", fromindex)); in endOfFirstSentence()
999 index = minIndex(index, text.indexOf("?\f", fromindex)); in endOfFirstSentence()
1000 index = minIndex(index, text.indexOf("! ", fromindex)); in endOfFirstSentence()
1001 index = minIndex(index, text.indexOf("!\t", fromindex)); in endOfFirstSentence()
1002 index = minIndex(index, text.indexOf("!\n", fromindex)); in endOfFirstSentence()
1003 index = minIndex(index, text.indexOf("!\r", fromindex)); in endOfFirstSentence()
1004 index = minIndex(index, text.indexOf("!\f", fromindex)); in endOfFirstSentence()
[all …]
/external/guava/guava-tests/benchmark/com/google/common/collect/
DBinaryTreeTraverserBenchmark.java98 int minIndex = 0; in createTreap() local
100 if (keys.get(i) < keys.get(minIndex)) { in createTreap()
101 minIndex = i; in createTreap()
104 Optional<BinaryNode> leftChild = createTreap(keys.subList(0, minIndex)); in createTreap()
105 Optional<BinaryNode> rightChild = createTreap(keys.subList(minIndex + 1, keys.size())); in createTreap()
106 return Optional.of(new BinaryNode(keys.get(minIndex), leftChild, rightChild)); in createTreap()
/external/icu/icu4c/source/tools/toolutil/
Ddenseranges.cpp67 int32_t minIndex=-1; in firstAfter() local
69 if(value<gapStarts[i] && (minIndex<0 || gapStarts[i]<minValue)) { in firstAfter()
71 minIndex=i; in firstAfter()
74 return minIndex; in firstAfter()
/external/skia/src/pathops/
DSkPathOpsCurve.cpp36 int minIndex = -1; in nearPoint() local
42 minIndex = index; in nearPoint()
45 if (minIndex < 0) { in nearPoint()
52 return SkPinT(i[0][minIndex]); in nearPoint()
/external/skia/src/codec/
DSkIcoCodec.cpp213 int32_t minIndex = -1; in onGetScaledDimensions() local
220 minIndex = i; in onGetScaledDimensions()
223 SkASSERT(minIndex >= 0); in onGetScaledDimensions()
225 return fEmbeddedCodecs->operator[](minIndex)->getInfo().dimensions(); in onGetScaledDimensions()
/external/icu/icu4c/source/test/letest/
Dcletest.c701 le_int32 minIndex = 0x7FFFFFFF, maxIndex = -1; in GlyphToCharTest() local
710 if (ix < minIndex) { in GlyphToCharTest()
711 minIndex = ix; in GlyphToCharTest()
715 if (minIndex != charIndex) { in GlyphToCharTest()
717 run, lineNumber, charIndex, minIndex); in GlyphToCharTest()
Dletest.cpp931 le_int32 minIndex = 0x7FFFFFFF, maxIndex = -1; in GlyphToCharTest() local
940 if (ix < minIndex) { in GlyphToCharTest()
941 minIndex = ix; in GlyphToCharTest()
945 if (minIndex != charIndex) { in GlyphToCharTest()
947 run, lineNumber, charIndex, minIndex); in GlyphToCharTest()
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
DAbstractRealVector.java301 int minIndex = -1; in getMinIndex() local
307 minIndex = entry.getIndex(); in getMinIndex()
311 return minIndex; in getMinIndex()
318 final int minIndex = getMinIndex(); in getMinValue() local
319 return minIndex < 0 ? Double.NaN : getEntry(minIndex); in getMinValue()
/external/guava/guava/src/com/google/common/collect/
DMinMaxPriorityQueue.java578 int minIndex = index; in findMin() local
580 if (compareElements(i, minIndex) < 0) { in findMin()
581 minIndex = i; in findMin()
584 return minIndex; in findMin()
/external/swiftshader/src/D3D9/
DDirect3DDevice9Ex.cpp229 …dexedPrimitive(D3DPRIMITIVETYPE type, int baseVertexIndex, unsigned int minIndex, unsigned int num… in DrawIndexedPrimitive() argument
231 …rtIndex = %d, unsigned int primitiveCount = %d", type, baseVertexIndex, minIndex, numVertices, sta… in DrawIndexedPrimitive()
233 …return Direct3DDevice9::DrawIndexedPrimitive(type, baseVertexIndex, minIndex, numVertices, startIn… in DrawIndexedPrimitive()
236 …long Direct3DDevice9Ex::DrawIndexedPrimitiveUP(D3DPRIMITIVETYPE type, unsigned int minIndex, unsig… in DrawIndexedPrimitiveUP() argument
238 …eamZeroData = 0x%0.8p, unsigned int vertexStreamZeroStride = %d", type, minIndex, numVertices, pri… in DrawIndexedPrimitiveUP()
240 …return Direct3DDevice9::DrawIndexedPrimitiveUP(type, minIndex, numVertices, primitiveCount, indexD… in DrawIndexedPrimitiveUP()
DDirect3DDevice9Ex.hpp139 …dexedPrimitive(D3DPRIMITIVETYPE type, int baseVertexIndex, unsigned int minIndex, unsigned int num…
/external/clang/utils/ABITest/
DABITestGen.py601 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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
DUtils.java150 int minIndex = 0; in closest() local
159 minIndex = i; in closest()
162 return minIndex; in closest()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DStringRange.java38 int minIndex = Math.min(o1.length, o2.length);
39 for (int i = 0; i < minIndex; ++i) {
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DStringRange.java42 int minIndex = Math.min(o1.length, o2.length);
43 for (int i = 0; i < minIndex; ++i) {
/external/mesa3d/src/mesa/program/
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/llvm/include/llvm/CodeGen/PBQP/
DReductionRules.h212 s.setSelection(NId, v.minIndex()); in backpropagate()
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/PBQP/
DMath.h86 unsigned minIndex() const { in minIndex() function
/external/skia/src/core/
DSkPath.cpp2643 int minIndex = index; in find_min_max_x_at_y() local
2652 minIndex = i; in find_min_max_x_at_y()
2659 return minIndex; in find_min_max_x_at_y()
2711 int minIndex = find_min_max_x_at_y(pts, index, n, &maxIndex); in CheapComputeFirstDirection() local
2712 if (minIndex == maxIndex) { in CheapComputeFirstDirection()
2715 SkASSERT(pts[minIndex].fY == pts[index].fY); in CheapComputeFirstDirection()
2717 SkASSERT(pts[minIndex].fX <= pts[maxIndex].fX); in CheapComputeFirstDirection()
2720 cross = minIndex - maxIndex; in CheapComputeFirstDirection()

12