Searched defs:ay (Results 1 - 25 of 38) sorted by relevance

12

/external/clang/test/Modules/Inputs/include_next/y/
H A Da.h1 enum { ay = 2 }; enumerator in enum:__anon3011
/external/skia/tests/
H A DPathOpsSimplifyDegenerateThreadedTest.cpp15 int ay = state.fA >> 2; local
36 path.moveTo(SkIntToScalar(ax), SkIntToScalar(ay));
45 pathStr.appendf(" path.moveTo(%d, %d);\n", ax, ay);
71 int ay = a >> 2; local
78 bool abcIsATriangle = (bx - ax) * (cy - ay) != (by - ay) * (cx - ax);
H A DPathOpsSimplifyTrianglesThreadedTest.cpp16 int ay = state.fA >> 2; local
39 path.moveTo(SkIntToScalar(ax), SkIntToScalar(ay));
48 pathStr.appendf(" path.moveTo(%d, %d);\n", ax, ay);
76 int ay = a >> 2; local
86 if ((bx - ax) * (cy - ay) == (by - ay) * (cx - ax)) {
H A DPathOpsSimplifyQuadThreadedTest.cpp19 int ay = state.fA >> 2; local
40 path.moveTo(SkIntToScalar(ax), SkIntToScalar(ay));
54 pathStr.appendf(" path.moveTo(%d, %d);\n", ax, ay);
H A DPathOpsSimplifyQuadralateralsThreadedTest.cpp19 int ay = state.fA >> 2; local
40 path.moveTo(SkIntToScalar(ax), SkIntToScalar(ay));
54 pathStr.appendf(" path.moveTo(%d, %d);\n", ax, ay);
H A DPathOpsQuadLineIntersectionThreadedTest.cpp78 int ay = state.fA >> 2; local
83 QuadPts q = {{{(double) ax, (double) ay}, {(double) bx, (double) by},
/external/skqp/tests/
H A DPathOpsSimplifyDegenerateThreadedTest.cpp15 int ay = state.fA >> 2; local
36 path.moveTo(SkIntToScalar(ax), SkIntToScalar(ay));
45 pathStr.appendf(" path.moveTo(%d, %d);\n", ax, ay);
71 int ay = a >> 2; local
78 bool abcIsATriangle = (bx - ax) * (cy - ay) != (by - ay) * (cx - ax);
H A DPathOpsSimplifyTrianglesThreadedTest.cpp16 int ay = state.fA >> 2; local
39 path.moveTo(SkIntToScalar(ax), SkIntToScalar(ay));
48 pathStr.appendf(" path.moveTo(%d, %d);\n", ax, ay);
76 int ay = a >> 2; local
86 if ((bx - ax) * (cy - ay) == (by - ay) * (cx - ax)) {
H A DPathOpsSimplifyQuadThreadedTest.cpp19 int ay = state.fA >> 2; local
40 path.moveTo(SkIntToScalar(ax), SkIntToScalar(ay));
54 pathStr.appendf(" path.moveTo(%d, %d);\n", ax, ay);
H A DPathOpsSimplifyQuadralateralsThreadedTest.cpp19 int ay = state.fA >> 2; local
40 path.moveTo(SkIntToScalar(ax), SkIntToScalar(ay));
54 pathStr.appendf(" path.moveTo(%d, %d);\n", ax, ay);
H A DPathOpsQuadLineIntersectionThreadedTest.cpp78 int ay = state.fA >> 2; local
83 QuadPts q = {{{(double) ax, (double) ay}, {(double) bx, (double) by},
/external/pdfium/third_party/agg23/
H A Dagg_math.h49 AGG_INLINE bool calc_intersection(float ax, float ay, float bx, float by, argument
53 float num = ((ay - cy) * (dx - cx)) - ((ax - cx) * (dy - cy));
54 float den = ((bx - ax) * (dy - cy)) - ((by - ay) * (dx - cx));
59 *y = ay + ((by - ay) * num / den);
/external/skia/include/core/
H A DSkRSXform.h29 * and anchor-point ax,ay within the src quad.
34 SkScalar ax, SkScalar ay) {
37 return Make(c, s, tx + -c * ax + s * ay, ty + -s * ax - c * ay);
33 MakeFromRadians(SkScalar scale, SkScalar radians, SkScalar tx, SkScalar ty, SkScalar ax, SkScalar ay) argument
/external/skqp/include/core/
H A DSkRSXform.h29 * and anchor-point ax,ay within the src quad.
34 SkScalar ax, SkScalar ay) {
37 return Make(c, s, tx + -c * ax + s * ay, ty + -s * ax - c * ay);
33 MakeFromRadians(SkScalar scale, SkScalar radians, SkScalar tx, SkScalar ty, SkScalar ax, SkScalar ay) argument
/external/tensorflow/tensorflow/core/kernels/
H A Dlogistic-loss.h51 // ay * log(ay) + (1-ay) * log (1-ay), where a is the dual variable.
52 const double ay = current_dual * example_label; variable
53 const double log_ay = (ay > 0) ? log(ay) : 0;
54 const double one_minus_ay = 1 - ay;
56 return ((ay * log_ay) + (one_minus_ay * log_one_minus_ay)) * example_weight;
/external/deqp/framework/common/
H A DtcuTexVerifierUtil.cpp67 const float ay = de::abs(y); local
75 if (ay+ey < ax-ex && az+ez < ax-ex)
80 else if (ax+ex < ay-ey && az+ez < ay-ey)
85 else if (ax+ex < az-ez && ay+ey < az-ez)
99 if (ay > ey)
/external/freetype/src/base/
H A Dftcalc.c981 FT_Pos ay = in_y + out_y; local
1007 d_hypot = FT_HYPOT( ax, ay );
/external/skia/src/pathops/
H A DSkPathOpsConic.cpp124 double ax, ay, az; local
127 ay = fPts[0].fY;
131 ay = conic_eval_numerator(&fPts[0].fY, fWeight, t1);
135 ay = fPts[2].fY;
157 double by = 2 * dy - (ay + cy) / 2;
159 SkDConic dst = {{{{ax / az, ay / az}, {bx / bz, by / bz}, {cx / cz, cy / cz}}
/external/skqp/src/pathops/
H A DSkPathOpsConic.cpp124 double ax, ay, az; local
127 ay = fPts[0].fY;
131 ay = conic_eval_numerator(&fPts[0].fY, fWeight, t1);
135 ay = fPts[2].fY;
157 double by = 2 * dy - (ay + cy) / 2;
159 SkDConic dst = {{{{ax / az, ay / az}, {bx / bz, by / bz}, {cx / cz, cy / cz}}
/external/tensorflow/tensorflow/core/ops/
H A Dmath_grad_test.cc212 const Tensor& y, bool ay) {
219 {{"T", T}, {attr_adj_x, ax}, {attr_adj_y, ay}}),
231 Tensor MatMul(const Tensor& x, bool ax, const Tensor& y, bool ay) { argument
232 return MatMulCommon("MatMul", "transpose_a", "transpose_b", x, ax, y, ay);
235 Tensor BatchMatMul(const Tensor& x, bool ax, const Tensor& y, bool ay) { argument
236 return MatMulCommon("BatchMatMul", "adj_x", "adj_y", x, ax, y, ay);
241 const Tensor& y, bool ay, Tensor* dx, Tensor* dy) {
253 {{"T", T}, {attr_adj_x, ax}, {attr_adj_y, ay}}},
299 void MatMulGrad(const Tensor& x, bool ax, const Tensor& y, bool ay, argument
302 ay, d
210 MatMulCommon(const string& opname, const string& attr_adj_x, const string& attr_adj_y, const Tensor& x, bool ax, const Tensor& y, bool ay) argument
239 MatMulGradCommon(const string& opname, const string& attr_adj_x, const string& attr_adj_y, const Tensor& x, bool ax, const Tensor& y, bool ay, Tensor* dx, Tensor* dy) argument
305 BatchMatMulGrad(const Tensor& x, bool ax, const Tensor& y, bool ay, Tensor* dx, Tensor* dy) argument
[all...]
/external/autotest/client/site_tests/graphics_SanAngeles/src/
H A Dmatrixop.c68 static float normalize(float *ax, float *ay, float *az) argument
70 float norm = sqrtf((*ax) * (*ax) + (*ay) * (*ay) + (*az) * (*az));
74 *ay /= norm;
82 float ax, float ay, float az)
90 float norm = normalize(&ax, &ay, &az);
96 yy = ay * ay;
98 xy = ax * ay;
99 yz = ay * a
81 Matrix4x4_Rotate(Matrix4x4 mat, float angle, float ax, float ay, float az) argument
[all...]
/external/opencv/cv/src/
H A Dcvrotcalipers.cpp151 double ay = vect[n-1].y; local
158 double convexity = ax * by - ay * bx;
166 ay = by;
H A Dcvconvhull.cpp77 int ay = cury - array[pprev]->y; local
78 int convexity = ay*bx - ax*by;/* if >0 then convex angle */
80 if( CV_SIGN(convexity) == sign2 && (ax != 0 || ay != 0) )
150 float ay = cury - array[pprev]->y; local
151 float convexity = ay*bx - ax*by;/* if >0 then convex angle */
153 if( CV_SIGN( convexity ) == sign2 && (ax != 0 || ay != 0) )
/external/python/cpython2/Modules/
H A Dcmathmodule.c310 double ay, h; local
319 ay = fabs(z.imag);
320 if (z.real > CM_SQRT_LARGE_DOUBLE || ay > CM_SQRT_LARGE_DOUBLE) {
334 } else if (z.real == 1. && ay < CM_SQRT_DBL_MIN) {
336 if (ay == 0.) {
341 r.real = -log(sqrt(ay)/sqrt(hypot(ay, 2.)));
342 r.imag = copysign(atan2(2., -ay)/2, z.imag);
346 r.real = m_log1p(4.*z.real/((1-z.real)*(1-z.real) + ay*ay))/
529 double ax, ay, am, an, h; local
698 double ax, ay; local
[all...]
/external/python/cpython3/Modules/
H A Dcmathmodule.c411 double ay, h; local
420 ay = fabs(z.imag);
421 if (z.real > CM_SQRT_LARGE_DOUBLE || ay > CM_SQRT_LARGE_DOUBLE) {
435 } else if (z.real == 1. && ay < CM_SQRT_DBL_MIN) {
437 if (ay == 0.) {
442 r.real = -log(sqrt(ay)/sqrt(hypot(ay, 2.)));
443 r.imag = copysign(atan2(2., -ay)/2, z.imag);
447 r.real = m_log1p(4.*z.real/((1-z.real)*(1-z.real) + ay*ay))/
630 double ax, ay, am, an, h; local
812 double ax, ay; local
[all...]

Completed in 542 milliseconds

12