Searched defs:ax (Results 26 - 50 of 102) sorted by relevance

12345

/external/chromium_org/third_party/WebKit/Source/platform/animation/
H A DUnitBezier.h41 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;
150 double ax; member in struct:blink::UnitBezier
/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dx509_trs.c278 X509_CERT_AUX *ax; local
279 ax = x->aux;
280 if(!ax) return X509_TRUST_UNTRUSTED;
281 if(ax->reject) {
282 for(i = 0; i < sk_ASN1_OBJECT_num(ax->reject); i++) {
283 obj = sk_ASN1_OBJECT_value(ax->reject, i);
287 if(ax->trust) {
288 for(i = 0; i < sk_ASN1_OBJECT_num(ax->trust); i++) {
289 obj = sk_ASN1_OBJECT_value(ax->trust, i);
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DEdgeWalkerPolygon4x4_Test.cpp17 int ax = state.a & 0x03; local
39 path.moveTo(ax, ay);
51 str += sprintf(str, " path.moveTo(%d, %d);\n", ax, ay);
111 int ax = state.a & 0x03; local
134 path.moveTo(ax, ay);
144 str += sprintf(str, " path.moveTo(%d, %d);\n", ax, ay);
177 int ax = a & 0x03; local
188 if ((bx - ax) * (cy - ay) == (by - ay) * (cx - ax)) {
208 int ax local
272 int ax = a & 0x03; local
[all...]
H A DEdgeWalkerPolygons_Mismatches.cpp1592 int ax = miss.a & 0x03; local
1610 path.moveTo(ax, ay);
H A DEdgeWalkerQuadratic4x4_Test.cpp20 int ax = state.a & 0x03; local
42 path.moveTo(ax, ay);
52 str += sprintf(str, " path.moveTo(%d, %d);\n", ax, ay);
H A DLineQuadraticIntersection_Test.cpp184 int ax = state.a & 0x03; local
190 Quadratic quad = {{ax, ay}, {bx, by}, {cx, cy}};
/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/third_party/skia/tests/
H A DPathOpsQuadLineIntersectionThreadedTest.cpp77 int ax = state.fA & 0x03; local
83 SkDQuad quad = {{{(double) ax, (double) ay}, {(double) bx, (double) by},
/external/chromium_org/v8/third_party/fdlibm/
H A Dfdlibm.js436 var ax = hx & 0x7fffffff; variable
445 if (ax >= 0x3ff00000) { // |x| >= 1
451 } else if (ax < 0x3c900000) {
454 } else if (ax < 0x3e200000) {
741 var ax = MathAbs(x);
742 if (ax < 22) {
744 if (ax < TWO_M28) return x;
745 var t = MathExpm1(ax);
746 if (ax < 1) return h * (2 * t - t * t / (t + 1));
750 if (ax < LOG_MAX
[all...]
/external/eigen/Eigen/src/Core/
H A DStableNorm.h99 RealScalar ax = abs(it.value()); local
100 if(ax > ab2) abig += numext::abs2(ax*s2m);
101 else if(ax < b1) asml += numext::abs2(ax*s1m);
102 else amed += numext::abs2(ax);
/external/openssl/crypto/x509/
H A Dx509_trs.c271 X509_CERT_AUX *ax; local
272 ax = x->aux;
273 if(!ax) return X509_TRUST_UNTRUSTED;
274 if(ax->reject) {
275 for(i = 0; i < sk_ASN1_OBJECT_num(ax->reject); i++) {
276 obj = sk_ASN1_OBJECT_value(ax->reject, i);
280 if(ax->trust) {
281 for(i = 0; i < sk_ASN1_OBJECT_num(ax->trust); i++) {
282 obj = sk_ASN1_OBJECT_value(ax->trust, i);
/external/skia/experimental/Intersection/
H A DEdgeWalkerPolygon4x4_Test.cpp17 int ax = state.a & 0x03; local
39 path.moveTo(ax, ay);
51 str += sprintf(str, " path.moveTo(%d, %d);\n", ax, ay);
111 int ax = state.a & 0x03; local
134 path.moveTo(ax, ay);
144 str += sprintf(str, " path.moveTo(%d, %d);\n", ax, ay);
177 int ax = a & 0x03; local
188 if ((bx - ax) * (cy - ay) == (by - ay) * (cx - ax)) {
208 int ax local
272 int ax = a & 0x03; local
[all...]
H A DEdgeWalkerPolygons_Mismatches.cpp1592 int ax = miss.a & 0x03; local
1610 path.moveTo(ax, ay);
H A DEdgeWalkerQuadratic4x4_Test.cpp20 int ax = state.a & 0x03; local
42 path.moveTo(ax, ay);
52 str += sprintf(str, " path.moveTo(%d, %d);\n", ax, ay);
/external/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/skia/tests/
H A DPathOpsQuadLineIntersectionThreadedTest.cpp77 int ax = state.fA & 0x03; local
83 SkDQuad quad = {{{(double) ax, (double) ay}, {(double) bx, (double) by},
/external/ceres-solver/internal/ceres/
H A Dgradient_checking_cost_function_test.cc92 double ax = 0; local
95 ax += a_[j][u] * parameters[j][u];
101 double f = *residuals = exp(-ax);
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/
H A Dopenid.php54 , $ax = false, $sreg = false, $data;
224 $this->ax = (bool) strpos($content, '<Type>http://openid.net/srv/ax/1.0</Type>'); variable
335 $params['openid.ns.ax'] = 'http://openid.net/srv/ax/1.0';
336 $params['openid.ax.mode'] = 'fetch_request';
351 $params['openid.ax.type.' . $alias] = $ns;
355 $params['openid.ax.count.' . $alias] = $count;
358 # Don't send empty ax.requied and ax
[all...]
/external/chromium_org/third_party/freetype/src/base/
H A Dftcalc.c942 FT_Pos ax = in_x; local
948 if ( ax < 0 )
949 ax = -ax;
952 d_in = ax + ay;
954 ax = out_x;
955 if ( ax < 0 )
956 ax = -ax;
960 d_out = ax
[all...]
/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dluac.c288 int ax=GETARG_Ax(i); local
311 printf("%d",MYK(ax));
366 printf("\t; "); PrintConstant(f,ax);
/external/clang/test/CodeGenCXX/
H A Ddynamic-cast-hint.cpp42 volatile X *ax = dynamic_cast<X *>(a); local

Completed in 232 milliseconds

12345