HomeSort by relevance Sort by last modified time
    Searched defs:ay (Results 1 - 25 of 43) sorted by null

1 2

  /external/clang/test/Modules/Inputs/include_next/y/
a.h 1 enum { ay = 2 }; enumerator in enum:__anon15405
  /external/skia/tests/
PathOpsSimplifyDegenerateThreadedTest.cpp 15 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);
PathOpsSimplifyTrianglesThreadedTest.cpp 16 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)) {
PathOpsSimplifyQuadThreadedTest.cpp 19 int ay = state.fA >> 2; local
40 path.moveTo(SkIntToScalar(ax), SkIntToScalar(ay));
54 pathStr.appendf(" path.moveTo(%d, %d);\n", ax, ay);
PathOpsSimplifyQuadralateralsThreadedTest.cpp 19 int ay = state.fA >> 2; local
40 path.moveTo(SkIntToScalar(ax), SkIntToScalar(ay));
54 pathStr.appendf(" path.moveTo(%d, %d);\n", ax, ay);
PathOpsQuadLineIntersectionThreadedTest.cpp 78 int ay = state.fA >> 2; local
83 QuadPts q = {{{(double) ax, (double) ay}, {(double) bx, (double) by},
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
YuvTest.java 28 Allocation ay; field in class:YuvTest
36 if (ay != null) {
37 ay.destroy();
76 ay = Allocation.createTyped(mRS, Type.createXY(mRS, Element.U8(mRS), w, h));
81 ay.copyFrom(by);
121 script.invoke_makeRef(ay, au, av, aref);
123 mVerify.invoke_verify(aref, aout, ay);
163 script.invoke_makeRef(ay, au, av, aref);
168 mVerify.invoke_verify(aref, aout, ay);
172 mVerify.invoke_verify(aref, aout, ay);
    [all...]
  /external/deqp/framework/common/
tcuTexVerifierUtil.cpp 67 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/skia/src/pathops/
SkPathOpsConic.cpp 124 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}}
SkPathOpsQuad.cpp 274 double ay = dst[0].fY = interp_quad_coords(&fPts[0].fY, t1); local
280 /* by = */ dst[1].fY = 2 * dy - (ay + cy) / 2;
  /packages/apps/Camera2/jni/
tinyplanet.cc 63 float ay = y - floor(y); local
65 float ayn = 1.0f - ay;
71 ax * ay * p2[4] + axn * ay * p2[0] + 0.5f);
76 ax * ay * p2[4] + axn * ay * p2[0] + 0.5f);
81 ax * ay * p2[4] + axn * ay * p2[0] + 0.5f);
  /packages/apps/Gallery2/jni/filters/
tinyplanet.cc 62 float ay = y - floor(y); local
64 float ayn = 1.0f - ay;
70 ax * ay * p2[4] + axn * ay * p2[0] + 0.5f);
75 ax * ay * p2[4] + axn * ay * p2[0] + 0.5f);
80 ax * ay * p2[4] + axn * ay * p2[0] + 0.5f);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
HermiteInterpolator.java 84 // A(ax,ay) is the vector p1->p2.
86 final int ay = mP2Y - mP1Y; local
99 final float crossProdAB = ax * by - ay * bx;
100 final float dotProdAB = ax * bx + ay * by;
101 final float normASquare = ax * ax + ay * ay;
104 mSlope1X = invHalfNormASquare * (dotProdAB * ax + crossProdAB * ay);
105 mSlope1Y = invHalfNormASquare * (dotProdAB * ay - crossProdAB * ax);
109 mSlope1Y = ay;
123 final float crossProdAB = ax * by - ay * bx
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
catrig.c 277 double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; local
284 ay = fabs(y);
304 if (ax > RECIP_EPSILON || ay > RECIP_EPSILON) {
320 if (ax < SQRT_6_EPSILON / 4 && ay < SQRT_6_EPSILON / 4)
323 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y);
358 double x, y, ax, ay, rx, ry, B, sqrt_A2mx2, new_x; local
368 ay = fabs(y);
388 if (ax > RECIP_EPSILON || ay > RECIP_EPSILON) {
405 if (ax < SQRT_6_EPSILON / 4 && ay < SQRT_6_EPSILON / 4)
408 do_hard_work(ay, ax, &ry, &B_is_usable, &B, &sqrt_A2mx2, &new_x)
458 double ax, ay, t; local
569 double x, y, ax, ay, rx, ry; local
    [all...]
catrigf.c 148 float x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; local
155 ay = fabsf(y);
167 if (ax > RECIP_EPSILON || ay > RECIP_EPSILON) {
181 if (ax < SQRT_6_EPSILON / 4 && ay < SQRT_6_EPSILON / 4)
184 do_hard_work(ax, ay, &rx, &B_is_usable, &B, &sqrt_A2my2, &new_y);
203 float x, y, ax, ay, rx, ry, B, sqrt_A2mx2, new_x; local
213 ay = fabsf(y);
225 if (ax > RECIP_EPSILON || ay > RECIP_EPSILON) {
239 if (ax < SQRT_6_EPSILON / 4 && ay < SQRT_6_EPSILON / 4)
242 do_hard_work(ay, ax, &ry, &B_is_usable, &B, &sqrt_A2mx2, &new_x)
281 float ax, ay, t; local
341 float x, y, ax, ay, rx, ry; local
    [all...]
  /cts/tests/tests/rscpp/src/android/cts/rscpp/
RSYuvTest.java 36 Allocation ay; field in class:RSYuvTest
66 ay = Allocation.createTyped(mRS, Type.createXY(mRS, Element.U8(mRS), w, h));
71 ay.copyFrom(by);
109 mVerify.invoke_verify(aref, aout, ay);
148 mVerify.invoke_verify(aref, aout, ay);
185 mVerify.invoke_verify(aref, aout, ay);
  /external/freetype/src/base/
ftcalc.c 967 FT_Pos ay = in_y + out_y; local
993 d_hypot = FT_HYPOT( ax, ay );
  /external/pdfium/third_party/freetype/src/base/
ftcalc.c 967 FT_Pos ay = in_y + out_y; local
993 d_hypot = FT_HYPOT( ax, ay );
  /external/opencv/cv/src/
cvrotcalipers.cpp 151 double ay = vect[n-1].y; local
158 double convexity = ax * by - ay * bx;
166 ay = by;
cvconvhull.cpp 77 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) )
  /libcore/ojluni/src/main/java/java/lang/
Math.java 890 long ay = Math.abs(y); local
    [all...]
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_image_homography.cpp 116 double m,ax,ay,apx,apy,bx,by,bpx,bpy; local
131 ay=x1[1]*m;
144 (l(ax*bx+ay*by)+1)^2*(l(apx^2+apy^2)+1)*(l(bpx^2+bpy^2)+1)=
145 (l(apx*bpx+apy*bpy)+1)^2*(l(ax^2+ay^2)+1)*(l(bx^2+by^2)+1)*/
146 p1[1]=ax*bx+ay*by;
150 p5[1]=db_sqr(ax)+db_sqr(ay);
  /developers/samples/android/sensors/AccelerometerPlay/app/src/main/java/com/example/android/accelerometerplay/
AccelerometerPlayActivity.java 171 final float ay = -sy/5; local
174 mPosY += mVelY * dT + ay * dT * dT / 2;
177 mVelY += ay * dT;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
cmathmodule.c 310 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))/4.;
529 double ax, ay, am, an, h; local
698 double ax, ay; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
cmathmodule.c 310 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))/4.;
529 double ax, ay, am, an, h; local
698 double ax, ay; local
    [all...]

Completed in 1141 milliseconds

1 2