Home
last modified time | relevance | path

Searched refs:ay (Results 1 – 25 of 405) sorted by relevance

12345678910>>...17

/third_party/skia/tests/
DPathOpsSimplifyDegenerateThreadedTest.cpp15 int ay = state.fA >> 2; in testSimplifyDegeneratesMain() local
35 path.moveTo(SkIntToScalar(ax), SkIntToScalar(ay)); in testSimplifyDegeneratesMain()
44 pathStr.appendf(" path.moveTo(%d, %d);\n", ax, ay); in testSimplifyDegeneratesMain()
70 int ay = a >> 2; in DEF_TEST() local
77 bool abcIsATriangle = (bx - ax) * (cy - ay) != (by - ay) * (cx - ax); in DEF_TEST()
DPathOpsSimplifyTrianglesThreadedTest.cpp16 int ay = state.fA >> 2; in testSimplifyTrianglesMain() local
38 path.moveTo(SkIntToScalar(ax), SkIntToScalar(ay)); in testSimplifyTrianglesMain()
47 pathStr.appendf(" path.moveTo(%d, %d);\n", ax, ay); in testSimplifyTrianglesMain()
73 int ay = a >> 2; in DEF_TEST() local
83 if ((bx - ax) * (cy - ay) == (by - ay) * (cx - ax)) { in DEF_TEST()
DPathOpsSimplifyQuadThreadedTest.cpp19 int ay = state.fA >> 2; in testSimplifyQuadsMain() local
39 path.moveTo(SkIntToScalar(ax), SkIntToScalar(ay)); in testSimplifyQuadsMain()
53 pathStr.appendf(" path.moveTo(%d, %d);\n", ax, ay); in testSimplifyQuadsMain()
DPathOpsSimplifyQuadralateralsThreadedTest.cpp19 int ay = state.fA >> 2; in testSimplifyQuadralateralsMain() local
39 path.moveTo(SkIntToScalar(ax), SkIntToScalar(ay)); in testSimplifyQuadralateralsMain()
53 pathStr.appendf(" path.moveTo(%d, %d);\n", ax, ay); in testSimplifyQuadralateralsMain()
/third_party/musl/src/math/
Dnextafterf.c6 uint32_t ax, ay, e; in nextafterf() local
13 ay = uy.i & 0x7fffffff; in nextafterf()
15 if (ay == 0) in nextafterf()
18 } else if (ax > ay || ((ux.i ^ uy.i) & 0x80000000)) in nextafterf()
Dnextafter.c6 uint64_t ax, ay; in nextafter() local
14 ay = uy.i & -1ULL/2; in nextafter()
16 if (ay == 0) in nextafter()
19 } else if (ax > ay || ((ux.i ^ uy.i) & 1ULL<<63)) in nextafter()
/third_party/musl/porting/liteos_a/kernel/src/math/
Dnextafterf.c6 uint32_t ax, ay, e; in nextafterf() local
13 ay = uy.i & 0x7fffffff; in nextafterf()
15 if (ay == 0) in nextafterf()
18 } else if (ax > ay || ((ux.i ^ uy.i) & 0x80000000)) in nextafterf()
Dnextafter.c6 uint64_t ax, ay; in nextafter() local
14 ay = uy.i & -1ULL/2; in nextafter()
16 if (ay == 0) in nextafter()
19 } else if (ax > ay || ((ux.i ^ uy.i) & 1ULL<<63)) in nextafter()
/third_party/vk-gl-cts/framework/common/
DtcuTexVerifierUtil.cpp79 const float ay = de::abs(y); in getPossibleCubeFaces() local
87 if (ay+ey < ax-ex && az+ez < ax-ex) in getPossibleCubeFaces()
92 else if (ax+ex < ay-ey && az+ez < ay-ey) in getPossibleCubeFaces()
97 else if (ax+ex < az-ez && ay+ey < az-ez) in getPossibleCubeFaces()
111 if (ay > ey) in getPossibleCubeFaces()
/third_party/ffmpeg/libavcodec/
Dmobiclip.c244 int ax, ay; member
535 y = av_clip(ret.ay + ret.y, 0, ret.h - 1); in pget()
788 int w, int h, int ax, int ay, in block_fill() argument
798 bxy.ay = ay; in block_fill()
810 block[ax + x + (ay + y) * linesize] = val; in block_fill()
829 static int predict_intra(AVCodecContext *avctx, AVFrame *frame, int ax, int ay, in predict_intra() argument
839 block_fill(frame->data[plane], size, frame->linesize[plane], w, h, ax, ay, pick_above); in predict_intra()
842 block_fill(frame->data[plane], size, frame->linesize[plane], w, h, ax, ay, pick_left); in predict_intra()
848 uint8_t *top = frame->data[plane] + FFMAX(ay - 1, 0) * frame->linesize[plane] + ax; in predict_intra()
849 uint8_t *left = frame->data[plane] + ay * frame->linesize[plane] + FFMAX(ax - 1, 0); in predict_intra()
[all …]
/third_party/skia/src/pathops/
DSkPathOpsConic.cpp125 double ax, ay, az; in subDivide() local
128 ay = fPts[0].fY; in subDivide()
132 ay = conic_eval_numerator(&fPts[0].fY, fWeight, t1); in subDivide()
136 ay = fPts[2].fY; in subDivide()
158 double by = 2 * dy - (ay + cy) / 2; in subDivide()
163 SkDConic dst = {{{{ax / az, ay / az}, {bx / bz, by / bz}, {cx / cz, cy / cz}} in subDivide()
/third_party/typescript/tests/baselines/reference/
DgenericTypeParameterEquivalence2.types113 return function (ay: A) {
114 >function (ay: A) { return function (by: B) { return f(ay, by); }; } : …
115 >ay : A
118 >function (by: B) { return f(ay, by); } : (by: B) => C
121 return f(ay, by);
122 >f(ay, by) : C
124 >ay : A
DgenericTypeParameterEquivalence2.js35 return function (ay: A) {
37 return f(ay, by);
90 return function (ay) { argument
92 return f(ay, by);
DgenericTypeParameterEquivalence2.symbols128 return function (ay: A) {
129 >ay : Symbol(ay, Decl(genericTypeParameterEquivalence2.ts, 33, 21))
136 return f(ay, by);
138 >ay : Symbol(ay, Decl(genericTypeParameterEquivalence2.ts, 33, 21))
/third_party/python/Modules/
Dcmathmodule.c411 double ay, h; in cmath_atanh_impl() local
420 ay = fabs(z.imag); in cmath_atanh_impl()
421 if (z.real > CM_SQRT_LARGE_DOUBLE || ay > CM_SQRT_LARGE_DOUBLE) { in cmath_atanh_impl()
435 } else if (z.real == 1. && ay < CM_SQRT_DBL_MIN) { in cmath_atanh_impl()
437 if (ay == 0.) { in cmath_atanh_impl()
442 r.real = -log(sqrt(ay)/sqrt(hypot(ay, 2.))); in cmath_atanh_impl()
443 r.imag = copysign(atan2(2., -ay)/2, z.imag); in cmath_atanh_impl()
447 r.real = m_log1p(4.*z.real/((1-z.real)*(1-z.real) + ay*ay))/4.; in cmath_atanh_impl()
448 r.imag = -atan2(-2.*z.imag, (1-z.real)*(1+z.real) - ay*ay)/2.; in cmath_atanh_impl()
630 double ax, ay, am, an, h; in c_log() local
[all …]
/third_party/typescript/tests/cases/fourslash/
DfindAllRefsReExportLocal.ts16 const [ax0Def, ax0, ax1Def, ax1, ax2Def, ax2, ay, bx0Def, bx0, by0, bx1, by1] = test.ranges(); constant
25 verify.renameLocations(ay, [ay, ...byRanges]);
/third_party/skia/include/core/
DSkRSXform.h34 SkScalar ax, SkScalar ay) { in MakeFromRadians()
37 return Make(c, s, tx + -c * ax + s * ay, ty + -s * ax - c * ay); in MakeFromRadians()
/third_party/skia/experimental/docs/
DinterpolatorFunctions.js31 var ay = interp_cubic_coords(y1, y2, y3, y4, t1);
39 var my = ey * 27 - ay * 8 - dy;
41 var ny = fy * 27 - ay - dy * 8;
47 ax, ay, bx, by, cx, cy, dx, dy
/third_party/icu/icu4c/source/data/locales/
Dtr.txt683 one{"MMMM 'ayının' W. 'haftası'"}
684 other{"MMMM 'ayının' W. 'haftası'"}
1822 dn{"ay"}
1824 "-1"{"geçen ay"}
1825 "0"{"bu ay"}
1826 "1"{"gelecek ay"}
1830 one{"{0} ay sonra"}
1831 other{"{0} ay sonra"}
1834 one{"{0} ay önce"}
1835 other{"{0} ay önce"}
[all …]
/third_party/skia/third_party/externals/icu/source/data/locales/
Dtr.txt659 one{"MMMM 'ayının' W. 'haftası'"}
660 other{"MMMM 'ayının' W. 'haftası'"}
1785 dn{"ay"}
1787 "-1"{"geçen ay"}
1788 "0"{"bu ay"}
1789 "1"{"gelecek ay"}
1793 one{"{0} ay sonra"}
1794 other{"{0} ay sonra"}
1797 one{"{0} ay önce"}
1798 other{"{0} ay önce"}
[all …]
Daz.txt1348 "-1"{"keçən ay"}
1349 "0"{"bu ay"}
1350 "1"{"gələn ay"}
1354 one{"{0} ay ərzində"}
1355 other{"{0} ay ərzində"}
1358 one{"{0} ay öncə"}
1359 other{"{0} ay öncə"}
1364 dn{"ay"}
1367 one{"{0} ay ərzində"}
1368 other{"{0} ay ərzində"}
[all …]
/third_party/typescript/tests/cases/compiler/
DgenericTypeParameterEquivalence2.ts34 return function (ay: A) {
36 return f(ay, by);
/third_party/ffmpeg/libavfilter/
Dvf_shear.c204 int ay = floorf(sy); \
206 float dv = sy - ay; \
208 int by = FFMIN(ay + 1, height - 1); \
210 sum += (1.f - du) * (1.f - dv) * src[ay * src_linesize + ax];\
211 sum += ( du) * (1.f - dv) * src[ay * src_linesize + bx];\
/third_party/skia/third_party/externals/icu/source/data/unit/
Dyo_BJ.txt112 dnam{"ìdinwɔ̀n ayé"}
113 other{"{0} ìdinwɔ̀n ayé"}
232 dnam{"àmì ìdínwɔ̀n ayé"}
233 other{"{0} àmì ìdínwɔ̀n ayé"}
/third_party/mesa3d/src/amd/vulkan/
Dradv_rt_common.c246 nir_ssa_def *ay = in intersect_ray_amd_software_tri() local
258 nir_ssa_def *v = nir_fsub(b, nir_fmul(b, ax, cy), nir_fmul(b, ay, cx)); in intersect_ray_amd_software_tri()
259 nir_ssa_def *w = nir_fsub(b, nir_fmul(b, bx, ay), nir_fmul(b, by, ax)); in intersect_ray_amd_software_tri()
283 ay = nir_f2f64(b, ay); in intersect_ray_amd_software_tri()
291 nir_store_var(b, v_var, nir_f2f32(b, nir_fsub(b, nir_fmul(b, ax, cy), nir_fmul(b, ay, cx))), in intersect_ray_amd_software_tri()
293 nir_store_var(b, w_var, nir_f2f32(b, nir_fsub(b, nir_fmul(b, bx, ay), nir_fmul(b, by, ax))), in intersect_ray_amd_software_tri()

12345678910>>...17