HomeSort by relevance Sort by last modified time
    Searched defs:ay (Results 26 - 50 of 53) sorted by null

12 3

  /external/skia/src/pathops/
SkPathOpsQuad.cpp 277 double ay = dst[0].fY = interp_quad_coords(&fPts[0].fY, t1); local
283 /* by = */ dst[1].fY = 2 * dy - (ay + cy) / 2;
  /external/skqp/src/pathops/
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;
  /libcore/ojluni/src/main/java/java/lang/
Math.java 897 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...]
  /external/opencv/cv/src/
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) )
  /external/python/cpython2/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...]
  /external/python/cpython3/Modules/
cmathmodule.c 411 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))/4.
630 double ax, ay, am, an, h; local
812 double ax, ay; local
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Delaunay.cpp 500 double ay = sa[a].Y(); local
504 double val = (ax - cx)*(by - cy) - (bx - cx)*(ay - cy);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GCWrapper.java 598 // We compute the positions of (ax,ay) for the point above and
601 double ay = y1 - arrowWidth; local
602 int rx = (int) (Math.cos(angle) * (ax-x1) - Math.sin(angle) * (ay-y1) + x1);
603 int ry = (int) (Math.sin(angle) * (ax-x1) + Math.cos(angle) * (ay-y1) + y1);
606 ay = y1 + arrowWidth;
607 rx = (int) (Math.cos(angle) * (ax-x1) - Math.sin(angle) * (ay-y1) + x1);
608 ry = (int) (Math.sin(angle) * (ax-x1) + Math.cos(angle) * (ay-y1) + y1);
  /development/samples/AccelerometerPlay/src/com/example/android/accelerometerplay/
AccelerometerPlayActivity.java 174 final float ay = gy * invm; local
195 mAccelY = ay;
  /external/freetype/src/pshinter/
pshalgo.c 1057 FT_Pos ax, ay; local
1062 ay = FT_ABS( dy );
1064 if ( ay * 12 < ax )
1069 else if ( ax * 12 < ay )
    [all...]
  /external/pdfium/third_party/lcms/src/
cmscnvrt.c 186 cmsFloat64Number ax, ay, az, bx, by, bz, tx, ty, tz; local
201 ay = (BlackPointOut->Y - cmsD50_XYZ()->Y) / ty;
209 _cmsVEC3init(&m ->v[1], 0, ay, 0);
    [all...]
  /frameworks/base/libs/hwui/
BakedOpDispatcher.cpp 465 int ay = ax + 1; local
475 ColorTextureVertex::set(vertex++, vertices[ax], vertices[ay], u1, v2, colors[ax / 2]);
    [all...]
  /external/opencv/cxcore/src/
cxdrawing.cpp 302 int ax, ay; local
333 ay = (dy ^ i) - i;
335 if( ax > ay )
361 dy = ay;
370 x_step = (int) (((int64) dx << XY_SHIFT) / (ay | 1));
416 if( ax > ay )
491 if( ax > ay )
565 int ax, ay; local
596 ay = (dy ^ i) - i;
598 if( ax > ay )
    [all...]
  /frameworks/base/services/core/java/com/android/server/net/
NetworkStatsCollection.java 203 long ay = Math.abs(y); local
204 if (((ax | ay) >>> 31 != 0)) {
  /external/deqp/framework/common/
tcuTexture.cpp 2445 const float ay = deFloatAbs(y); local
    [all...]
  /external/skia/src/gpu/
GrTessellator.cpp 589 double ay = static_cast<double>(curr->fPoint.fY) - prev->fPoint.fY; local
592 if (ax * by - ay * bx >= 0.0) {
    [all...]
  /external/skqp/src/gpu/
GrTessellator.cpp 589 double ay = static_cast<double>(curr->fPoint.fY) - prev->fPoint.fY; local
592 if (ax * by - ay * bx >= 0.0) {
    [all...]
  /prebuilts/tools/common/m2/repository/com/paypal/android/sdk/data-collector/2.3.6/
data-collector-2.3.6.jar 
  /prebuilts/tools/common/m2/repository/com/crittercism/crittercism-android-agent/5.6.4/
crittercism-android-agent-5.6.4.jar 
  /prebuilts/devtools/tools/lib/
jython-standalone-2.5.3.jar 
  /prebuilts/misc/common/jython/
jython.jar 

Completed in 779 milliseconds

12 3