/external/skia/src/gpu/tessellate/ |
D | GrStrokeFixedCountTessellator.cpp | 64 SkPoint chops[5]; in quadraticTo() local 65 SkChopQuadAtHalf(p, chops); in quadraticTo() 66 this->quadraticTo(chops); in quadraticTo() 67 this->quadraticTo(chops + 2); in quadraticTo() 82 SkConic chops[2]; in conicTo() local 83 if (SkConic(p, w).chopAt(.5f, chops)) { in conicTo() 84 this->conicTo(chops[0].fPts, chops[0].fW); in conicTo() 85 this->conicTo(chops[1].fPts, chops[1].fW); in conicTo() 100 SkPoint chops[7]; in cubicConvex180To() local 101 SkChopCubicAtHalf(p, chops); in cubicConvex180To() [all …]
|
D | GrStrokeHardwareTessellator.cpp | 174 SkPoint chops[10]; in writeCubicConvex180PatchesTo() local 182 SkChopCubicAt(p, chops, chopT[0]); in writeCubicConvex180PatchesTo() 185 chops[2] = chops[4] = chops[3]; in writeCubicConvex180PatchesTo() 187 this->internalCubicConvex180PatchesTo(fStrokeJoinType, chops); in writeCubicConvex180PatchesTo() 188 this->internalCubicConvex180PatchesTo(JoinType::kBowtie, chops + 3); in writeCubicConvex180PatchesTo() 191 SkChopCubicAt(p, chops, chopT[0], chopT[1]); in writeCubicConvex180PatchesTo() 194 this->writeLineTo(chops[0], chops[3]); in writeCubicConvex180PatchesTo() 195 this->writeLineTo(JoinType::kBowtie, chops[3], chops[6]); in writeCubicConvex180PatchesTo() 196 this->writeLineTo(JoinType::kBowtie, chops[6], chops[9]); in writeCubicConvex180PatchesTo() 199 this->internalCubicConvex180PatchesTo(fStrokeJoinType, chops); in writeCubicConvex180PatchesTo() [all …]
|
D | GrStrokeIndirectTessellator.cpp | 138 SkPoint chops[7]; in countChoppedCubic() local 139 SkChopCubicAt(pts, chops, chopT); in countChoppedCubic() 140 this->countCubic(chops, lastControlPoint, resolveLevelPtr); in countChoppedCubic() 141 this->countCubic(chops + 3, chops[3], resolveLevelPtr + 1); in countChoppedCubic()
|
/external/skqp/src/gpu/ccpr/ |
D | GrCCFillGeometry.cpp | 251 SkSTArray<4, float>* chops) { in find_chops_around_inflection_points() argument 252 SkASSERT(chops->empty()); in find_chops_around_inflection_points() 307 pts.store(chops->push_back_n(2)); in find_chops_around_inflection_points() 314 pts.store(chops->push_back_n(2)); in find_chops_around_inflection_points() 336 SkSTArray<4, float>* chops) { in find_chops_around_loop_intersection() argument 337 SkASSERT(chops->empty()); in find_chops_around_loop_intersection() 433 chops->push_back(0); in find_chops_around_loop_intersection() 435 chops->push_back(A + B + D[i]); in find_chops_around_loop_intersection() 437 chops->push_back(1); in find_chops_around_loop_intersection() 460 chops->push_back_n(2, &roots[i]); in find_chops_around_loop_intersection() [all …]
|
D | GrCCFillGeometry.h | 100 const Sk2f& p3, const float chops[], int numChops, float localT0 = 0,
|
/external/angle/infra/config/generated/ |
D | cr-buildbucket.cfg | 14 identity: "user:angle-ci-builder@chops-service-accounts.iam.gserviceaccount.com" 28 service_account: "angle-ci-builder@chops-service-accounts.iam.gserviceaccount.com" 45 service_account: "angle-ci-builder@chops-service-accounts.iam.gserviceaccount.com" 62 service_account: "angle-ci-builder@chops-service-accounts.iam.gserviceaccount.com" 79 service_account: "angle-ci-builder@chops-service-accounts.iam.gserviceaccount.com" 96 service_account: "angle-ci-builder@chops-service-accounts.iam.gserviceaccount.com" 114 service_account: "angle-ci-builder@chops-service-accounts.iam.gserviceaccount.com" 132 service_account: "angle-ci-builder@chops-service-accounts.iam.gserviceaccount.com" 150 service_account: "angle-ci-builder@chops-service-accounts.iam.gserviceaccount.com" 168 service_account: "angle-ci-builder@chops-service-accounts.iam.gserviceaccount.com" [all …]
|
D | realms.cfg | 49 principals: "user:chrome-gpu-gold@chops-service-accounts.iam.gserviceaccount.com" 50 principals: "user:chromium-tester@chops-service-accounts.iam.gserviceaccount.com" 62 principals: "user:angle-ci-builder@chops-service-accounts.iam.gserviceaccount.com" 66 principals: "user:angle-ci-builder@chops-service-accounts.iam.gserviceaccount.com" 79 principals: "user:angle-try-builder@chops-service-accounts.iam.gserviceaccount.com"
|
/external/skia/tests/ |
D | GrPathUtilsTest.cpp | 39 SkPoint chops[10]; in check_cubic_convex_180() local 40 SkChopCubicAt(p, chops, convex180T, convex180N); in check_cubic_convex_180() 43 float rads = SkMeasureNonInflectCubicRotation(chops + i*3); in check_cubic_convex_180() 57 SkMeasureNonInflectCubicRotation(chops), SK_ScalarPI)); in check_cubic_convex_180() 59 SkMeasureNonInflectCubicRotation(chops + 3), totalRotation - SK_ScalarPI)); in check_cubic_convex_180()
|
D | PathOpsConicIntersectionTest.cpp | 143 const int chops = 2; in writeDPng() local 144 for (int tIndex = 0; tIndex < chops; ++tIndex) { in writeDPng() 145 SkDConic chopped = dConic.subDivide(tIndex / (double) chops, in writeDPng() 146 (tIndex + 1) / (double) chops); in writeDPng()
|
D | GeometryTest.cpp | 575 SkPoint chops[10]; in test_chop_at_midtangent() local 578 int n = SkChopCubicAtInflections(serp.data(), chops); in test_chop_at_midtangent() 580 test_chop_cubic_at_midtangent(reporter, chops + i*3, SkCubicType::kSerpentine); in test_chop_at_midtangent() 608 int n = SkChopCubicAtInflections(kExactCuspAtInf, chops); in test_chop_at_midtangent() 610 test_chop_cubic_at_midtangent(reporter, chops + i*3, SkCubicType::kCuspAtInfinity); in test_chop_at_midtangent()
|
D | StrokeIndirectTest.cpp | 289 SkPoint chops[10]; in verifyResolveLevels() local 362 SkChopCubicAt(pts, chops, T, n); in verifyResolveLevels() 375 SkPoint* p = chops + i*3; in verifyResolveLevels()
|
/external/angle/infra/specs/ |
D | mixins.pyl | 21 …'chrome-gpu-gold-service-account': { 'swarming': { 'service_account': 'chrome-gpu-gold@chops-servi… 22 …'chromium-tester-service-account': { 'swarming': { 'service_account': 'chromium-tester@chops-servi…
|
/external/skqp/tests/ |
D | PathOpsConicIntersectionTest.cpp | 144 const int chops = 2; in writeDPng() local 145 for (int tIndex = 0; tIndex < chops; ++tIndex) { in writeDPng() 146 SkDConic chopped = dConic.subDivide(tIndex / (double) chops, in writeDPng() 147 (tIndex + 1) / (double) chops); in writeDPng()
|
/external/skqp/src/gpu/ |
D | GrPathUtils.cpp | 835 SkSTArray<2, SkScalar> chops; in chopCubicAtLoopIntersection() local 847 chops.push_back(t0); in chopCubicAtLoopIntersection() 851 chops.push_back(t1); in chopCubicAtLoopIntersection() 852 *loopIndex = chops.count() - 1; in chopCubicAtLoopIntersection() 857 SkChopCubicAt(src, dst, chops.begin(), chops.count()); in chopCubicAtLoopIntersection() 858 return chops.count() + 1; in chopCubicAtLoopIntersection()
|
/external/fonttools/Doc/source/cu2qu/ |
D | index.rst | 13 Instead, this method chops the cubic curve into multiple segments before
|
/external/openscreen/infra/config/global/ |
D | cr-buildbucket.cfg | 211 service_account: "openscreen-ci-builder@chops-service-accounts.iam.gserviceaccount.com" 329 service_account: "openscreen-try-builder@chops-service-accounts.iam.gserviceaccount.com"
|
/external/skqp/site/user/api/ |
D | skpaint_overview.md | 186 * SkDiscretePathEffect: This path effect chops a path into discrete
|
/external/skia/site/docs/user/api/ |
D | skpaint_overview.md | 193 * SkDiscretePathEffect: This path effect chops a path into discrete
|
/external/python/cpython3/Doc/library/ |
D | concurrent.futures.rst | 59 When using :class:`ProcessPoolExecutor`, this method chops *iterables*
|
D | multiprocessing.rst | 2198 This method chops the iterable into a number of chunks which it submits to
|
/external/libogg/doc/ |
D | rfc3533.txt | 443 encapsulation process chops up the packets into segments. The
|
/external/python/cpython2/Doc/library/ |
D | multiprocessing.rst | 1842 This method chops the iterable into a number of chunks which it submits to
|
/external/kotlinx.coroutines/benchmarks/src/jmh/resources/ |
D | words.shakespeare.txt.gz | 1a
2A
3Aaron
4AARON
5abaissiez
6abandon
7abandoned
8abase
9Abase
10 ... |
D | ospd.txt.gz |
|
/external/jline/src/src/test/resources/jline/example/ |
D | english.gz |
|