Home
last modified time | relevance | path

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

12

/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
H A DIndexDataManager.cpp196 void computeRange(const IndexType *indices, GLsizei count, GLuint *minIndex, GLuint *maxIndex, std::vector<GLsizei>* restartIndices) in computeRange() argument
199 *minIndex = MAX_ELEMENTS_INDICES; in computeRange()
208 if(*minIndex > indices[i]) *minIndex = indices[i]; in computeRange()
213 void computeRange(GLenum type, const void *indices, GLsizei count, GLuint *minIndex, GLuint *maxIndex, std::vector<GLsizei>* restartIndices) in computeRange() argument
217 computeRange(static_cast<const GLubyte*>(indices), count, minIndex, maxIndex, restartIndices); in computeRange() local
221 computeRange(static_cast<const GLuint*>(indices), count, minIndex, maxIndex, restartIndices); in computeRange() local
225 computeRange(static_cast<const GLushort*>(indices), count, minIndex, maxIndex, restartIndices); in computeRange() local
293 computeRange(type, indices, count, &translated->minIndex, &translated->maxIndex, restartIndices); in prepareIndexData()
354 if(translated->minIndex < star in prepareIndexData()
[all...]
H A DIndexDataManager.h32 unsigned int minIndex; member
H A DContext.cpp3693 GLsizei vertexCount = indexInfo.maxIndex - indexInfo.minIndex + 1; in drawElements()
3694 err = applyVertexBuffer(-(int)indexInfo.minIndex, indexInfo.minIndex, vertexCount, i); in drawElements()
/third_party/node/deps/icu-small/source/tools/toolutil/
H A 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()
/third_party/icu/icu4c/source/tools/toolutil/
H A 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()
/third_party/skia/third_party/externals/icu/source/tools/toolutil/
H A 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()
/third_party/skia/src/pathops/
H A 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()
/third_party/skia/third_party/externals/angle2/src/common/
H A Dutilities.cpp35 IndexType minIndex = 0; in ComputeTypedIndexRange() local
47 minIndex = indices[i]; in ComputeTypedIndexRange()
59 if (minIndex > indices[i]) in ComputeTypedIndexRange()
61 minIndex = indices[i]; in ComputeTypedIndexRange()
73 minIndex = indices[0]; in ComputeTypedIndexRange()
79 if (minIndex > indices[i]) in ComputeTypedIndexRange()
81 minIndex = indices[i]; in ComputeTypedIndexRange()
90 return gl::IndexRange(static_cast<size_t>(minIndex), static_cast<size_t>(maxIndex), in ComputeTypedIndexRange()
/third_party/skia/src/codec/
H A DSkIcoCodec.cpp258 int32_t minIndex = -1; in onGetScaledDimensions() local
266 minIndex = i; in onGetScaledDimensions()
269 SkASSERT(minIndex >= 0); in onGetScaledDimensions()
271 return fEmbeddedCodecs->operator[](minIndex)->dimensions(); in onGetScaledDimensions()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DStringRange.java38 int minIndex = Math.min(o1.length, o2.length);
39 for (int i = 0; i < minIndex; ++i) {
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DStringRange.java45 int minIndex = Math.min(o1.length, o2.length);
46 for (int i = 0; i < minIndex; ++i) {
/third_party/skia/src/utils/
H A DSkShadowTessellator.cpp597 int minIndex = 0; in stitchConcaveRings() local
602 minIndex = i; in stitchConcaveRings()
605 int currPenumbra = minIndex; in stitchConcaveRings()
607 minIndex = 0; in stitchConcaveRings()
612 minIndex = i; in stitchConcaveRings()
615 int currUmbra = minIndex; in stitchConcaveRings()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/
H A DRenderer9.cpp86 static void DrawPoints(IDirect3DDevice9 *device, GLsizei count, const void *indices, int minIndex) in DrawPoints() argument
91 static_cast<unsigned int>(static_cast<const T *>(indices)[i]) - minIndex; in DrawPoints()
1459 int minIndex = static_cast<int>(indexRange.start); in drawElementsImpl() local
1466 return drawIndexedPoints(context, count, type, indices, minIndex, elementArrayBuffer); in drawElementsImpl()
1471 return drawLineLoop(context, count, type, indices, minIndex, elementArrayBuffer); in drawElementsImpl()
1476 mDevice->DrawIndexedPrimitive(mPrimitiveType, -minIndex, minIndex, in drawElementsImpl()
1487 int minIndex, in drawLineLoop()
1646 mDevice->DrawIndexedPrimitive(D3DPT_LINESTRIP, -minIndex, minIndex, coun in drawLineLoop()
1483 drawLineLoop(const gl::Context *context, GLsizei count, gl::DrawElementsType type, const void *indices, int minIndex, gl::Buffer *elementArrayBuffer) drawLineLoop() argument
1651 drawIndexedPoints(const gl::Context *context, GLsizei count, gl::DrawElementsType type, const void *indices, int minIndex, gl::Buffer *elementArrayBuffer) drawIndexedPoints() argument
[all...]
H A DRenderer9.h459 int minIndex,
465 int minIndex,
/third_party/icu/icu4c/source/test/letest/
H A 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()
946 log_err("Bad minIndex for run %d on line %d: expected %d, got %d\n", in GlyphToCharTest()
947 run, lineNumber, charIndex, minIndex); in GlyphToCharTest()
H A 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()
716 log_err("Bad minIndex for run %d on line %d: expected %d, got %d\n", in GlyphToCharTest()
717 run, lineNumber, charIndex, minIndex); in GlyphToCharTest()
/third_party/mesa3d/src/mesa/program/
H A Dprogram_parse.y2167 const GLint minIndex = 0;
2168 assert(index >= minIndex);
2169 (void) minIndex;
2207 const GLint minIndex = -(1 << INST_INDEX_BITS);
2209 assert(index >= minIndex);
2210 (void) minIndex;
/third_party/skia/src/core/
H A DSkPath.cpp2500 int minIndex = index; in find_min_max_x_at_y() local
2509 minIndex = i; in find_min_max_x_at_y()
2516 return minIndex; in find_min_max_x_at_y()
2567 int minIndex = find_min_max_x_at_y(pts, index, n, &maxIndex); in ComputeFirstDirection() local
2568 if (minIndex == maxIndex) { in ComputeFirstDirection()
2571 SkASSERT(pts[minIndex].fY == pts[index].fY); in ComputeFirstDirection()
2573 SkASSERT(pts[minIndex].fX <= pts[maxIndex].fX); in ComputeFirstDirection()
2576 cross = minIndex - maxIndex; in ComputeFirstDirection()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/PBQP/
H A DMath.h89 unsigned minIndex() const {
H A DReductionRules.h213 s.setSelection(NId, v.minIndex()); in backpropagate()
/third_party/skia/third_party/externals/angle2/src/image_util/
H A Dloadimage_etc.cpp1097 size_t minIndex = 0; in selectEndPointPCA() local
1111 minIndex = i; in selectEndPointPCA()
1122 *minColorIndex = static_cast<int>(minIndex); in selectEndPointPCA()
/third_party/typescript/lib/
H A DtypingsInstaller.js[all...]
H A Dtsc.js[all...]
H A Dtsserverlibrary.js[all...]
/third_party/node/test/fixtures/snapshot/
H A Dtypescript.js[all...]

Completed in 145 milliseconds

12