Searched refs:idy (Results 1 – 9 of 9) sorted by relevance
/third_party/flutter/skia/tests/ |
D | PathCoverageTest.cpp | 30 int idy = SkAbs32(SkScalarRoundToInt(dy)); in cheap_distance() local 31 if (idx > idy) { in cheap_distance() 32 idx += idy >> 1; in cheap_distance() 34 idx = idy + (idx >> 1); in cheap_distance()
|
/third_party/skia/tests/ |
D | PathCoverageTest.cpp | 30 int idy = SkAbs32(SkScalarRoundToInt(dy)); in cheap_distance() local 31 if (idx > idy) { in cheap_distance() 32 idx += idy >> 1; in cheap_distance() 34 idx = idy + (idx >> 1); in cheap_distance()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/internal/ |
D | graphcycles.cc | 493 bool GraphCycles::InsertEdge(GraphId idx, GraphId idy) { in InsertEdge() argument 496 const int32_t y = NodeIndex(idy); in InsertEdge() 498 Node* ny = FindNode(r, idy); in InsertEdge() 625 int GraphCycles::FindPath(GraphId idx, GraphId idy, int max_path_len, in FindPath() argument 628 if (FindNode(r, idx) == nullptr || FindNode(r, idy) == nullptr) return 0; in FindPath() 630 const int32_t y = NodeIndex(idy); in FindPath()
|
/third_party/skia/third_party/externals/tint/src/resolver/ |
D | array_accessor_test.cc | 49 auto* idy = Var("idy", ty.u32(), Expr(2u)); in TEST_F() local 50 auto* acc = IndexAccessor(IndexAccessor("my_var", idx), idy); in TEST_F() 51 WrapInFunction(Decl(idx), Decl(idy), acc); in TEST_F()
|
/third_party/skia/src/core/ |
D | SkScan_Hairline.cpp | 233 uint32_t idy = SkScalarCeilToInt(dy); in compute_int_quad_dist() local 235 if (idx > idy) { in compute_int_quad_dist() 236 return idx + (idy >> 1); in compute_int_quad_dist() 238 return idy + (idx >> 1); in compute_int_quad_dist()
|
/third_party/flutter/skia/src/core/ |
D | SkScan_Hairline.cpp | 224 uint32_t idy = SkScalarCeilToInt(dy); in compute_int_quad_dist() local 226 if (idx > idy) { in compute_int_quad_dist() 227 return idx + (idy >> 1); in compute_int_quad_dist() 229 return idy + (idx >> 1); in compute_int_quad_dist()
|
/third_party/flutter/skia/third_party/externals/angle2/src/tests/gl_tests/ |
D | ShaderStorageBufferTest.cpp | 1179 for (unsigned int idy = 0; idy < kComponentCount; idy++) in TEST_P() local 1181 EXPECT_EQ(kExpectedValues[idx][idy], *(ptr + idx * kComponentCount + idy)); in TEST_P()
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
D | ShaderStorageBufferTest.cpp | 1304 for (unsigned int idy = 0; idy < kComponentCount; idy++) in TEST_P() local 1306 EXPECT_EQ(kExpectedValues[idx][idy], *(ptr + idx * kComponentCount + idy)); in TEST_P()
|
/third_party/ffmpeg/libavfilter/opencl/ |
D | deshake.cl | 239 int idy = get_group_id(1) * get_local_size(1); 241 for (int i = idy - 3, it = 0; i < idy + (int)get_local_size(1) + 3; i++, it++) {
|