/third_party/skia/include/private/ |
D | SkNx_sse.h | 113 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function 216 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function 272 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function 294 return (x < y).thenElse(x, y); in Min() 302 return (x > y).thenElse(x, y); in Max() 342 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function 391 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function 573 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function 643 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function 689 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function
|
D | SkNx_neon.h | 146 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function 280 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function 350 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function 397 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function 488 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function 544 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function 602 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function
|
D | SkNx.h | 147 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function 148 return { fLo.thenElse(t.fLo, e.fLo), fHi.thenElse(t.fHi, e.fHi) }; in thenElse() 263 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { return fVal != 0 ? t : e; }
|
/third_party/flutter/skia/include/private/ |
D | SkNx_sse.h | 115 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function 220 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function 276 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function 298 return (x < y).thenElse(x, y); in Min() 306 return (x > y).thenElse(x, y); in Max() 346 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function 394 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function 575 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function 643 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function 686 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function
|
D | SkNx_neon.h | 157 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function 302 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function 372 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function 419 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function 510 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function 566 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function 624 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function
|
D | SkNx.h | 149 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { in thenElse() function 150 return { fLo.thenElse(t.fLo, e.fLo), fHi.thenElse(t.fHi, e.fHi) }; in thenElse() 267 AI SkNx thenElse(const SkNx& t, const SkNx& e) const { return fVal != 0 ? t : e; }
|
/third_party/skia/src/core/ |
D | Sk4px.h | 96 Sk4px thenElse(const Sk4px& t, const Sk4px& e) const { return INHERITED::thenElse(t,e); } in thenElse() function
|
/third_party/flutter/skia/src/core/ |
D | Sk4px.h | 96 Sk4px thenElse(const Sk4px& t, const Sk4px& e) const { return INHERITED::thenElse(t,e); } in thenElse() function
|
/third_party/flutter/skia/src/gpu/ccpr/ |
D | GrCCFillGeometry.cpp | 216 return (aa > bb * SK_ScalarNearlyZero).thenElse(a, b); in first_unless_nearly_zero() 268 tl = (sl > 0).thenElse(tl, -tl); // Tl=tl/sl is the triple root of l(t,s). Normalize so s >= 0. in find_chops_around_inflection_points() 415 numRoots = (discr < 0).thenElse(3, 1); in find_chops_around_loop_intersection() 424 R = (r > 0).thenElse(-s, s); in find_chops_around_loop_intersection() 444 cosTheta3 = (q >= 0).thenElse(1, -1) + p / qqq.abs(); in find_chops_around_loop_intersection()
|
/third_party/skia/tests/ |
D | SkNxTest.cpp | 395 auto fs = (Sk4f(0.0f, -0.0f, 2.0f, -4.0f) < 0).thenElse(-1, 1); in DEF_TEST() 400 auto fshi = (Sk2f(0.0f, -0.0f) < 0).thenElse(-1, 1); in DEF_TEST() 401 auto fslo = (Sk2f(2.0f, -4.0f) < 0).thenElse(-1, 1); in DEF_TEST()
|
/third_party/flutter/skia/tests/ |
D | SkNxTest.cpp | 389 auto fs = (Sk4f(0.0f, -0.0f, 2.0f, -4.0f) < 0).thenElse(-1, 1); in DEF_TEST() 394 auto fshi = (Sk2f(0.0f, -0.0f) < 0).thenElse(-1, 1); in DEF_TEST() 395 auto fslo = (Sk2f(2.0f, -4.0f) < 0).thenElse(-1, 1); in DEF_TEST()
|
/third_party/glslang/glslang/HLSL/ |
D | hlslGrammar.cpp | 3656 TIntermNodePair thenElse = { nullptr, nullptr }; in acceptSelectionStatement() local 3661 if (! acceptScopedStatement(thenElse.node1)) { in acceptSelectionStatement() 3669 if (! acceptScopedStatement(thenElse.node2)) { in acceptSelectionStatement() 3676 statement = intermediate.addSelection(condition, thenElse, loc); in acceptSelectionStatement()
|
/third_party/flutter/skia/src/gpu/ops/ |
D | GrTextureOp.cpp | 111 ltrb = (whwh < 1.f).thenElse(c, ltrb + kOffsets); in compute_domain()
|