Home
last modified time | relevance | path

Searched refs:kNumPoints (Results 1 - 4 of 4) sorted by relevance

/third_party/skia/bench/
H A DPathBench.cpp326 fPoints.reset(kNumPoints); in createData()
327 for (int i = 0; i < kNumPoints; ++i) { in createData()
346 path->moveTo(fPoints[(fCurrPoint++) & (kNumPoints - 1)]); in makePath()
349 path->lineTo(fPoints[(fCurrPoint++) & (kNumPoints - 1)]); in makePath()
352 path->quadTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)], in makePath()
353 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)]); in makePath()
357 path->conicTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)], in makePath()
358 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)], in makePath()
363 path->cubicTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)], in makePath()
364 fPoints[(fCurrPoint + 1) & (kNumPoints in makePath()
389 kNumPoints = 1 << 5, global() enumerator
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H A Draw_hash_set_benchmark.cc197 const size_t kNumPoints = 10; in CacheInSteadyStateArgs() local
198 for (size_t i = 0; i != kNumPoints; ++i) in CacheInSteadyStateArgs()
200 capacity * (max_load_factor + i * max_load_factor / kNumPoints) / 2)); in CacheInSteadyStateArgs()
/third_party/skia/tests/
H A DMatrixTest.cpp793 static const int kNumPoints = 5; in check_decompScale() local
794 const SkPoint testPts[kNumPoints] = { in check_decompScale()
802 SkPoint v1[kNumPoints]; in check_decompScale()
803 original.mapPoints(v1, testPts, kNumPoints); in check_decompScale()
805 SkPoint v2[kNumPoints]; in check_decompScale()
810 scaleMat.mapPoints(v2, testPts, kNumPoints); in check_decompScale()
811 remaining.mapPoints(v2, kNumPoints); in check_decompScale()
813 for (int i = 0; i < kNumPoints; ++i) { in check_decompScale()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/rasterization/
H A DvktRasterizationTests.cpp7207 static constexpr uint32_t kNumPoints = kNumTriangles * 3u;
7319 << "layout (local_size_x=" << kNumPoints << ", local_size_y=1, local_size_z=1) in;\n"
7321 << "layout (max_vertices=" << kNumPoints << ", max_primitives=" << kNumTriangles << ") out;\n"
7333 << " SetMeshOutputsEXT(" << kNumPoints << ", " << kNumTriangles << ");\n"
7556 DE_ASSERT(de::sizeU32(vertices) == PolygonModeLargePointsCase::kNumPoints);

Completed in 14 milliseconds