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

12 3 4 5

  /external/opencv3/modules/shape/src/
tps_trans.cpp 121 float ax=tpsParameters.at<float>(tpsParameters.rows-2,i); local
124 float affine=a1+ax*point.x+ay*point.y;
  /external/skia/src/pathops/
SkPathOpsConic.cpp 121 double ax, ay, az; local
123 ax = fPts[0].fX;
127 ax = conic_eval_numerator(&fPts[0].fX, fWeight, t1);
131 ax = fPts[2].fX;
153 double bx = 2 * dx - (ax + cx) / 2;
156 SkDConic dst = {{{{ax / az, ay / az}, {bx / bz, by / bz}, {cx / cz, cy / cz}}},
  /external/skia/tests/
PathOpsQuadLineIntersectionThreadedTest.cpp 77 int ax = state.fA & 0x03; local
83 SkDQuad quad = {{{(double) ax, (double) ay}, {(double) bx, (double) by},
  /frameworks/av/tools/resampler_tools/
fir.cpp 44 double ax,ans,y; local
45 ax=fabs(x);
46 if (ax < 3.75) {
52 y=3.75/ax;
53 ans=(exp(ax)/sqrt(ax))*(0.39894228+y*(0.1328592e-1
  /hardware/bsp/intel/peripheral/libupm/src/mpu9150/
mpu60x0.cxx 113 int16_t ax, ay, az; local
117 ax = ( (buffer[0] << 8) | buffer[1] );
128 m_accelX = float(ax);
  /hardware/intel/img/psb_video/src/
tng_ved_scaling.c 42 float ax,ans; local
45 ax = (float)fabs(x);
46 if (ax < 3.75)
55 y = (float)(3.75 / ax);
56 ans = (float)((float)((sqrt(ax) / sqrt(ax)) * (0.39894228 + y * (0.1328592e-1
  /packages/apps/Camera2/jni/
tinyplanet.cc 62 float ax = x - floor(x); local
64 float axn = 1.0f - ax;
70 dest[0] = static_cast<unsigned char>(axn * ayn * p[0] + ax * ayn * p[4] +
71 ax * ay * p2[4] + axn * ay * p2[0] + 0.5f);
75 dest[1] = static_cast<unsigned char>(axn * ayn * p[0] + ax * ayn * p[4] +
76 ax * ay * p2[4] + axn * ay * p2[0] + 0.5f);
80 dest[2] = static_cast<unsigned char>(axn * ayn * p[0] + ax * ayn * p[4] +
81 ax * ay * p2[4] + axn * ay * p2[0] + 0.5f);
  /packages/apps/Gallery2/jni/filters/
tinyplanet.cc 61 float ax = x - floor(x); local
63 float axn = 1.0f - ax;
69 dest[0] = static_cast<unsigned char>(axn * ayn * p[0] + ax * ayn * p[4] +
70 ax * ay * p2[4] + axn * ay * p2[0] + 0.5f);
74 dest[1] = static_cast<unsigned char>(axn * ayn * p[0] + ax * ayn * p[4] +
75 ax * ay * p2[4] + axn * ay * p2[0] + 0.5f);
79 dest[2] = static_cast<unsigned char>(axn * ayn * p[0] + ax * ayn * p[4] +
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.
85 final int ax = mP2X - mP1X; 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);
108 mSlope1X = ax;
123 final float crossProdAB = ax * by - ay * bx
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/ld128/
s_logl.c 571 int16_t ax, hx; local
576 ax = hx & 0x7fff;
577 if (ax >= 0x3fff) { /* x <= -1, or x neg NaN */
578 if (ax == 0x3fff && (lx | llx) == 0)
583 if (ax <= 0x3f8d) { /* |x| < 2**-113 */
  /bionic/libm/upstream-freebsd/lib/msun/src/
catrig.c 277 double x, y, ax, ay, rx, ry, B, sqrt_A2my2, new_y; local
283 ax = fabs(x);
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
367 ax = fabs(x);
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
154 ax = fabsf(x);
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
212 ax = fabsf(x);
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...]
e_pow.c 99 double z,ax,z_h,z_l,p_h,p_l; local
160 ax = fabs(x);
164 z = ax; /*x is +-0,+-inf,+-1*/
199 t = ax-one; /* t has 20 trailing zeros */
211 {ax *= two53; n -= 53; GET_HIGH_WORD(ix,ax); }
219 SET_HIGH_WORD(ax,ix);
222 u = ax-bp[k]; /* bp[0]=1.0, bp[1]=1.5 */
223 v = one/(ax+bp[k]);
227 /* t_h=ax+bp[k] High *
    [all...]
e_powf.c 58 float z,ax,z_h,z_l,p_h,p_l; local
111 ax = fabsf(x);
114 z = ax; /*x is +-0,+-inf,+-1*/
140 t = ax-1; /* t has 20 trailing zeros */
153 {ax *= two24; n -= 24; GET_FLOAT_WORD(ix,ax); }
161 SET_FLOAT_WORD(ax,ix);
164 u = ax-bp[k]; /* bp[0]=1.0, bp[1]=1.5 */
165 v = one/(ax+bp[k]);
170 /* t_h=ax+bp[k] High *
    [all...]
  /development/ndk/platforms/android-21/arch-x86/include/asm/
sigcontext32.h 81 unsigned int ax; member in struct:sigcontext_ia32
  /development/ndk/platforms/android-21/arch-x86_64/include/asm/
sigcontext32.h 81 unsigned int ax; member in struct:sigcontext_ia32
  /device/google/contexthub/lib/libm/
ef_pow.c 66 float z,ax,z_h,z_l,p_h,p_l; local
118 ax = fabsf(x);
121 z = ax; /*x is +-0,+-inf,+-1*/
142 t = ax-1; /* t has 20 trailing zeros */
155 {ax *= two24; n -= 24; GET_FLOAT_WORD(ix,ax); }
163 SET_FLOAT_WORD(ax,ix);
166 u = ax-bp[k]; /* bp[0]=1.0, bp[1]=1.5 */
167 v = one/(ax+bp[k]);
172 /* t_h=ax+bp[k] High *
    [all...]
  /external/clang/test/CodeGenCXX/
dynamic-cast-hint.cpp 42 volatile X *ax = dynamic_cast<X *>(a); local
  /external/freetype/src/base/
ftcalc.c 966 FT_Pos ax = in_x + out_x; local
993 d_hypot = FT_HYPOT( ax, ay );
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/particle/
VoronoiDiagram.java 179 float ax = a.center.x - x; local
183 float a2 = ax * ax + ay * ay;
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/base/
ftcalc.c 966 FT_Pos ax = in_x + out_x; local
993 d_hypot = FT_HYPOT( ax, ay );
  /external/opencv/cxcore/src/
cxjacobieigens.cpp 73 double Amax, anorm = 0, ax; local
97 ax = anorm * eps / n;
100 while( Amax > ax && iters++ < 100 )
179 } /* while ( Amax > ax ) */
224 double Amax = 0.0, anorm = 0.0, ax; local
248 ax = anorm * eps / n;
251 while( Amax > ax && iters++ < 100 )
331 } /* while ( Amax > ax ) */
cxrand.cpp 287 double x, y, v, ax, bx; local
293 ax = fabs(x);
294 v = 2.8658 - ax*(2.0213 - 0.3605*ax);
298 if( y < v || ax < 1.17741 )
302 x = bx > 0 ? 0.8857913*(2.506628 - ax) : -0.8857913*(2.506628 - ax);
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfAcesFile.cpp 441 float ax = acesNeutral.x; local
443 V3f acesNeutralXYZ (ax / ay, 1, (1 - ax - ay) / ay);
  /external/opencv3/modules/photo/src/
fast_nlmeans_denoising_invoker.hpp 188 int ax = border_size_ + j + template_window_half_size_; local
193 T a_up = extended_src_.at<T>(ay - template_window_half_size_ - 1, ax);
194 T a_down = extended_src_.at<T>(ay + template_window_half_size_, ax);
294 int ax = border_size_ + j + template_window_half_size_; local
310 col_dist_sums[new_last_col_num][y][x] += D::template calcDist<T>(extended_src_, ay + ty, ax, by + ty, bx);

Completed in 410 milliseconds

12 3 4 5