/third_party/skia/src/core/ |
D | SkVertices.cpp | 35 fIndexCount; member 49 fISize = safe.mul(desc.fIndexCount, sizeof(uint16_t)); in Sizes() 52 if (desc.fIndexCount) { in Sizes() 54 numFanTris = desc.fIndexCount - 2; in Sizes() 139 fVertices->fIndexCount = desc.fIndexCount; in init() 150 SkASSERT(fVertices->fIndexCount); in detach() 152 for (int t = 0; t < fVertices->fIndexCount - 2; ++t) { in detach() 157 fVertices->fIndexCount = 3 * (fVertices->fIndexCount - 2); in detach() 159 SkASSERT(!fVertices->fIndexCount); in detach() 165 fVertices->fIndexCount = 3 * (fVertices->fVertexCount - 2); in detach() [all …]
|
D | SkVerticesPriv.h | 30 int indexCount() const { return fVertices->fIndexCount; } in indexCount()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | UnicodeCompressor.java | 276 private int [] fIndexCount = new int [ MAXINDEX + 1 ]; field in UnicodeCompressor 551 fIndexCount[curIndex]++; in compress() 565 if((fIndexCount[curIndex] > 1) || in compress() 747 fIndexCount[curIndex]++; in compress() 762 if((fIndexCount[curIndex] > 1) || in compress() 847 fIndexCount[i] = 0; in reset()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
D | UnicodeCompressor.java | 277 private int [] fIndexCount = new int [ MAXINDEX + 1 ]; field in UnicodeCompressor 548 fIndexCount[curIndex]++; in compress() 562 if((fIndexCount[curIndex] > 1) || in compress() 744 fIndexCount[curIndex]++; in compress() 759 if((fIndexCount[curIndex] > 1) || in compress() 843 fIndexCount[i] = 0; in reset()
|
/third_party/skia/src/gpu/ |
D | GrSimpleMesh.h | 32 int fIndexCount; member 66 fIndexCount = indexCount; in setIndexed() 88 fIndexCount = indexCount; in setIndexedPatterned()
|
D | GrOpFlushState.cpp | 236 this->drawIndexed(mesh.fIndexCount, mesh.fBaseIndex, mesh.fMinIndexValue, in drawMesh() 239 this->drawIndexPattern(mesh.fIndexCount, mesh.fPatternRepeatCount, in drawMesh()
|
D | GrDrawIndirectCommand.h | 24 uint32_t fIndexCount; member
|
/third_party/skia/src/gpu/ops/ |
D | DrawVerticesOp.cpp | 289 int fIndexCount; member in skgpu::v1::DrawVerticesOp::__anon2e467b300111::DrawVerticesOpImpl 318 fIndexCount = info.indexCount(); in DrawVerticesOpImpl() 346 (int)fPrimitiveType, fMeshes.count(), fVertexCount, fIndexCount, in onDumpInfo() 419 indices = target->makeIndexSpace(fIndexCount, &indexBuffer, &firstIndex); in onPrepareDraws() 475 fMesh->setIndexed(std::move(indexBuffer), fIndexCount, firstIndex, 0, fVertexCount - 1, in onPrepareDraws() 569 fIndexCount += that->fIndexCount; in onCombineIfPossible()
|
D | ShadowRRectOp.cpp | 234 fIndexCount = circle_type_to_index_count(kStroke_RRectType == type); in ShadowCircularRRectOp() 237 fIndexCount = rrect_type_to_index_count(type); in ShadowCircularRRectOp() 565 uint16_t* indices = target->makeIndexSpace(fIndexCount, &indexBuffer, &firstIndex); in onPrepareDraws() 601 fMesh->setIndexed(std::move(indexBuffer), fIndexCount, firstIndex, 0, fVertCount - 1, in onPrepareDraws() 624 fIndexCount += that->fIndexCount; in onCombineIfPossible() 653 int fIndexCount; member in __anon84451e630111::ShadowCircularRRectOp
|
D | GrOvalOpFactory.cpp | 1213 fIndexCount = circle_type_to_index_count(stroked); in CircleOp() 1291 uint16_t* indices = target->makeIndexSpace(fIndexCount, &indexBuffer, &firstIndex); in onPrepareDraws() 1397 fMesh->setIndexed(std::move(indexBuffer), fIndexCount, firstIndex, 0, fVertCount - 1, in onPrepareDraws() 1439 fIndexCount += that->fIndexCount; in onCombineIfPossible() 1477 int fIndexCount; member in CircleOp 1586 fIndexCount = circle_type_to_index_count(true); in ButtCapDashedCircleOp() 1663 uint16_t* indices = target->makeIndexSpace(fIndexCount, &indexBuffer, &firstIndex); in onPrepareDraws() 1728 fMesh->setIndexed(std::move(indexBuffer), fIndexCount, firstIndex, 0, fVertCount - 1, in onPrepareDraws() 1762 fIndexCount += that->fIndexCount; in onCombineIfPossible() 1801 int fIndexCount; member in ButtCapDashedCircleOp [all …]
|
/third_party/skia/include/core/ |
D | SkVertices.h | 133 int fIndexCount; variable
|