Searched defs:bx (Results 1 - 25 of 77) sorted by relevance

1234

/external/llvm/test/MC/ARM/
H A Ddwarf-cfi-initial-state.s7 bx lr label
/external/chromium_org/v8/test/webkit/fast/js/kde/
H A Deval.js33 var bx = b.x // rule out side effects of eval() in shouldBe() test function variable
34 shouldBe("bx", "99");
/external/chromium_org/third_party/boringssl/src/crypto/poly1305/
H A Dpoly1305_arm_asm.S1521 bx lr label
2013 bx lr label
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DCubicParameterization_TestUtility.cpp8 double ax, bx, cx, dx; local
10 alt_set_abcd(&cubic[0].x, ax, bx, cx, dx);
12 set_abcd(&cubic[0].x, ax, bx, cx, dx);
19 if (!try_alt) calc_bc(dx, bx, cx);
23 double bx = cubic[1].x;
30 calc_ABCD(ax, bx, cx, dx, ay, by, cy, dy, coeffs);
34 coeffs[index] = (*calc_proc[procIndex])(ax, bx, cx, dx, ay, by, cy, dy);
H A DEdgeWalkerPolygon4x4_Test.cpp19 int bx = state.b & 0x03; local
40 path.lineTo(bx, by);
52 str += sprintf(str, " path.lineTo(%d, %d);\n", bx, by);
113 int bx = state.b & 0x03; local
135 path.lineTo(bx, by);
145 str += sprintf(str, " path.lineTo(%d, %d);\n", bx, by);
180 int bx = b & 0x03; local
188 if ((bx - ax) * (cy - ay) == (by - ay) * (cx - ax)) {
210 int bx = state.b & 0x03; local
230 path.lineTo(bx, b
275 int bx = b & 0x03; local
[all...]
H A DEdgeWalkerPolygons_Mismatches.cpp1594 int bx = miss.b & 0x03; local
1611 path.lineTo(bx, by);
H A DEdgeWalkerQuadratic4x4_Test.cpp22 int bx = state.b & 0x03; local
43 path.quadTo(bx, by, cx, cy);
53 str += sprintf(str, " path.quadTo(%d, %d, %d, %d);\n", bx, by, cx, cy);
/external/chromium_org/third_party/skia/tests/
H A DPathOpsSimplifyDegenerateThreadedTest.cpp20 int bx = state.fB & 0x03; local
40 path.lineTo(SkIntToScalar(bx), SkIntToScalar(by));
50 str += sprintf(str, " path.lineTo(%d, %d);\n", bx, by);
77 int bx = b & 0x03; local
82 bool abcIsATriangle = (bx - ax) * (cy - ay) != (by - ay) * (cx - ax);
H A DPathOpsSimplifyQuadThreadedTest.cpp21 int bx = state.fB & 0x03; local
42 path.quadTo(SkIntToScalar(bx), SkIntToScalar(by),
55 str += sprintf(str, " path.quadTo(%d, %d, %d, %d);\n", bx, by, cx, cy);
H A DPathOpsSimplifyQuadralateralsThreadedTest.cpp21 int bx = state.fB & 0x03; local
42 path.lineTo(SkIntToScalar(bx), SkIntToScalar(by));
55 str += sprintf(str, " path.lineTo(%d, %d);\n", bx, by);
H A DPathOpsSimplifyTrianglesThreadedTest.cpp21 int bx = state.fB & 0x03; local
43 path.lineTo(SkIntToScalar(bx), SkIntToScalar(by));
53 str += sprintf(str, " path.lineTo(%d, %d);\n", bx, by);
82 int bx = b & 0x03; local
90 if ((bx - ax) * (cy - ay) == (by - ay) * (cx - ax)) {
H A DPathOpsQuadLineIntersectionThreadedTest.cpp79 int bx = state.fB & 0x03; local
83 SkDQuad quad = {{{(double) ax, (double) ay}, {(double) bx, (double) by},
/external/pdfium/core/src/fxge/agg/agg23/
H A Dagg_math.h49 AGG_INLINE bool calc_intersection(FX_FLOAT ax, FX_FLOAT ay, FX_FLOAT bx, FX_FLOAT by, argument
54 FX_FLOAT den = FXSYS_Mul(bx - ax, dy - cy) - FXSYS_Mul(by - ay, dx - cx);
58 *x = ax + FXSYS_MulDiv(bx - ax, num, den);
/external/skia/experimental/Intersection/
H A DCubicParameterization_TestUtility.cpp8 double ax, bx, cx, dx; local
10 alt_set_abcd(&cubic[0].x, ax, bx, cx, dx);
12 set_abcd(&cubic[0].x, ax, bx, cx, dx);
19 if (!try_alt) calc_bc(dx, bx, cx);
23 double bx = cubic[1].x;
30 calc_ABCD(ax, bx, cx, dx, ay, by, cy, dy, coeffs);
34 coeffs[index] = (*calc_proc[procIndex])(ax, bx, cx, dx, ay, by, cy, dy);
H A DEdgeWalkerPolygon4x4_Test.cpp19 int bx = state.b & 0x03; local
40 path.lineTo(bx, by);
52 str += sprintf(str, " path.lineTo(%d, %d);\n", bx, by);
113 int bx = state.b & 0x03; local
135 path.lineTo(bx, by);
145 str += sprintf(str, " path.lineTo(%d, %d);\n", bx, by);
180 int bx = b & 0x03; local
188 if ((bx - ax) * (cy - ay) == (by - ay) * (cx - ax)) {
210 int bx = state.b & 0x03; local
230 path.lineTo(bx, b
275 int bx = b & 0x03; local
[all...]
H A DEdgeWalkerPolygons_Mismatches.cpp1594 int bx = miss.b & 0x03; local
1611 path.lineTo(bx, by);
/external/skia/tests/
H A DPathOpsSimplifyDegenerateThreadedTest.cpp20 int bx = state.fB & 0x03; local
40 path.lineTo(SkIntToScalar(bx), SkIntToScalar(by));
50 str += sprintf(str, " path.lineTo(%d, %d);\n", bx, by);
77 int bx = b & 0x03; local
82 bool abcIsATriangle = (bx - ax) * (cy - ay) != (by - ay) * (cx - ax);
H A DPathOpsSimplifyQuadThreadedTest.cpp21 int bx = state.fB & 0x03; local
42 path.quadTo(SkIntToScalar(bx), SkIntToScalar(by),
55 str += sprintf(str, " path.quadTo(%d, %d, %d, %d);\n", bx, by, cx, cy);
H A DPathOpsSimplifyQuadralateralsThreadedTest.cpp21 int bx = state.fB & 0x03; local
42 path.lineTo(SkIntToScalar(bx), SkIntToScalar(by));
55 str += sprintf(str, " path.lineTo(%d, %d);\n", bx, by);
H A DPathOpsSimplifyTrianglesThreadedTest.cpp21 int bx = state.fB & 0x03; local
43 path.lineTo(SkIntToScalar(bx), SkIntToScalar(by));
53 str += sprintf(str, " path.lineTo(%d, %d);\n", bx, by);
82 int bx = b & 0x03; local
90 if ((bx - ax) * (cy - ay) == (by - ay) * (cx - ax)) {
/external/chromium_org/third_party/WebKit/Source/platform/animation/
H A DUnitBezier.h40 bx = 3.0 * (p2x - p1x) - cx;
41 ax = 1.0 - cx -bx;
80 // `ax t^3 + bx t^2 + cx t' expanded using Horner's rule.
81 return ((ax * t + bx) * t + cx) * t;
91 return (3.0 * ax * t + 2.0 * bx) * t + cx;
151 double bx; member in struct:blink::UnitBezier
/external/chromium_org/third_party/skia/experimental/
H A DSkSetPoly3To3.cpp29 static SkScalar dot(SkScalar ax, SkScalar ay, SkScalar bx, SkScalar by) { argument
30 return SkScalarMul(ax, bx) + SkScalarMul(ay, by);
H A DSkSetPoly3To3_A.cpp42 static SkDScalar ddot(SkScalar ax, SkScalar ay, SkScalar bx, SkScalar by) { argument
43 return SkDScalar_setMul(ax, bx) + SkDScalar_setMul(ay, by);
46 static SkScalar dot(SkScalar ax, SkScalar ay, SkScalar bx, SkScalar by) { argument
47 return SkDScalar_toScalar(ddot(ax, ay, bx, by));
H A DSkSetPoly3To3_D.cpp49 static SkScalar dot(SkScalar ax, SkScalar ay, SkScalar bx, SkScalar by) { argument
50 return SkDScalar_toScalar(SkDScalar_setMul(ax, bx) +
/external/chromium_org/v8/tools/
H A Dgenerate-ten-powers.scm46 (*bx x (exptbx #z2 (fixnum->bignum by)))))
51 (/bx x (exptbx #z2 (fixnum->bignum by)))))
62 (+bx n
65 (-bx (bit-lshbx #z1
69 (+bx n
74 (exact? (=bx n (bit-lshbx cut shift))))
75 (if (<=bx cut max-container)
79 (define (rounded-/bx x y)
81 ((down) (/bx x y))
82 ((up) (+bx (/b
[all...]

Completed in 8075 milliseconds

1234