/external/jpeg/ |
jmemdos.c | 99 unsigned short ax, dx, bx; member in struct:__anon10825 103 unsigned short ax, dx, bx; member in struct:__anon10826 352 ctx.ax = 0x0b00; /* EMB move */ 354 if (ctx.ax != 1) 385 ctx.ax = 0x0b00; /* EMB move */ 387 if (ctx.ax != 1) 406 ctx.ax = 0x0a00; 425 ctx.ax = 0x0000; 427 if (ctx.ax < (unsigned short) 0x0200) 432 ctx.ax = 0x0900 [all...] |
/external/opencv/cv/src/ |
cvrotcalipers.cpp | 150 double ax = vect[n-1].x; local 158 double convexity = ax * by - ay * bx; 165 ax = bx;
|
cvconvhull.cpp | 75 int ax = array[pcur]->x - array[pprev]->x; local 78 int convexity = ay*bx - ax*by;/* if >0 then convex angle */ 80 if( CV_SIGN(convexity) == sign2 && (ax != 0 || ay != 0) ) 148 float ax = array[pcur]->x - array[pprev]->x; local 151 float convexity = ay*bx - ax*by;/* if >0 then convex angle */ 153 if( CV_SIGN( convexity ) == sign2 && (ax != 0 || ay != 0) )
|
/packages/apps/Camera/jni/feature_stab/db_vlvm/ |
db_image_homography.cpp | 116 double m,ax,ay,apx,apy,bx,by,bpx,bpy; local 130 ax=x1[0]*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);
|
/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/ |
db_image_homography.cpp | 116 double m,ax,ay,apx,apy,bx,by,bpx,bpy; local 130 ax=x1[0]*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);
|
/art/disassembler/ |
disassembler_x86.cc | 50 "ax", "cx", "dx", "bx", "sp", "bp", "si", "di", 305 bool ax = false; // implicit use of ax local 320 case ax8_i8: opcode1 = #opname; ax = true; immediate_bytes = 1; byte_operand = true; break; \ 321 case ax32_i32: opcode1 = #opname; ax = true; immediate_bytes = 4; break; [all...] |
/development/perftests/panorama/feature_mos/src/mosaic/ |
Delaunay.cpp | 497 double ax = sa[a].X(); local 504 double val = (ax - cx)*(by - cy) - (bx - cx)*(ay - cy);
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
matrix.h | 309 VGfloat ax = dx0 - dx1 + dx2 - dx3; local 312 if (floatIsZero(ax) && floatIsZero(ay)) { 326 VGfloat gtop = ax * ay2 - ax2 * ay; 327 VGfloat htop = ax1 * ay - ax * ay1;
|
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/ |
cmscnvrt.c | 186 cmsFloat64Number ax, ay, az, bx, by, bz, tx, ty, tz; local 192 // This is a linear scaling in the form ax+b, where 200 ax = (BlackPointOut->X - cmsD50_XYZ()->X) / tx; 208 _cmsVEC3init(&m ->v[0], ax, 0, 0); [all...] |
/packages/apps/Camera/jni/feature_mos/src/mosaic/ |
Delaunay.cpp | 497 double ax = sa[a].X(); local 504 double val = (ax - cx)*(by - cy) - (bx - cx)*(ay - cy);
|
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/ |
Delaunay.cpp | 497 double ax = sa[a].X(); 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 600 double ax = x1 + lineLength - arrowHeight; 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); 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);
|
/bionic/libm/upstream-freebsd/lib/msun/ld128/ |
s_erfl.c | 196 long double ax,R,S,P,Q,s,y,z,r; local 208 ax = fabsl(x); 209 if(ax < 0.84375) { 210 if(ax < 0x1p-40L) { 211 if(ax < 0x1p-16373L) 223 if(ax < 1.25) { 224 s = ax-one; 231 if (ax >= 9) { /* inf>|x|>= 9 */ 234 s = one/(ax*ax); 258 long double ax,R,S,P,Q,s,y,z,r; local [all...] |
/development/samples/AccelerometerPlay/src/com/example/android/accelerometerplay/ |
AccelerometerPlayActivity.java | 173 final float ax = gx * invm; local 194 mAccelX = ax;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/ |
ECFieldElement.java | 167 BigInteger ax = this.x, bx = b.toBigInteger(), xx = x.toBigInteger(), yx = y.toBigInteger(); local 168 BigInteger ab = ax.multiply(bx); 175 BigInteger ax = this.x, bx = b.toBigInteger(), xx = x.toBigInteger(), yx = y.toBigInteger(); local 176 BigInteger ab = ax.multiply(bx); 198 BigInteger ax = this.x, xx = x.toBigInteger(), yx = y.toBigInteger(); local 199 BigInteger aa = ax.multiply(ax); 206 BigInteger ax = this.x, xx = x.toBigInteger(), yx = y.toBigInteger(); local 207 BigInteger aa = ax.multiply(ax); 712 LongArray ax = this.x, bx = ((F2m)b).x, xx = ((F2m)x).x, yx = ((F2m)y).x; local 753 LongArray ax = this.x, xx = ((F2m)x).x, yx = ((F2m)y).x; local [all...] |
/external/clang/test/CXX/drs/ |
dr4xx.cpp | 657 int ax[a]; member in namespace:dr457
|
dr5xx.cpp | 243 int ax = a.x, bx = b.x, cx = c.x, dx = d.x, ex = E::e->x, fx = F::f->x; member in namespace:dr527
|
dr0xx.cpp | 146 A<X> ax; member in namespace:dr11
|
dr3xx.cpp | 891 A<X> ax; // expected-note {{instantiation of}} member in namespace:dr372::example2 [all...] |
/external/clang/test/SemaCXX/ |
nested-name-spec.cpp | 11 int ax; // expected-note {{'ax' declared here}} member in namespace:A 16 ::A::ax::undef ex3; // expected-error {{'ax' is not a class, namespace, or enumeration}} 59 int x = ::A::ax = A::C::cx; 92 { int A; A::ax = 0; } member in class:A 93 { typedef int A; A::ax = 0; } // expected-error{{'A' (aka 'int') is not a class, namespace, or enumeration}} member in class:A 94 { typedef A::C A; A::ax = 0; } // expected-error {{no member named 'ax'}} member in class:A
|
/external/freetype/src/pshinter/ |
pshalgo.c | 932 FT_Pos ax = x_in; local 938 if ( ax < 0 ) 939 ax = -ax; 942 d_in = ax + ay; 944 ax = x_out; 945 if ( ax < 0 ) 946 ax = -ax; 950 d_out = ax + ay 1151 FT_Pos ax, ay; local [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/bounding/ |
BoundingSphere.java | 411 float ax = getMaxAxis(axes);
local 412 sphere.radius = FastMath.abs(ax * radius) + RADIUS_EPSILON - 1f;
|
/external/opencv/cvaux/src/ |
cveigenobjects.cpp | 49 double Amax, anorm = 0, ax; local 73 ax = anorm * eps / n; 76 while( Amax > ax ) 155 } /* while ( Amax > ax ) */ [all...] |
/external/pdfium/third_party/freetype/src/pshinter/ |
pshalgo.c | 941 FT_Pos ax = x_in; local 947 if ( ax < 0 ) 948 ax = -ax; 951 d_in = ax + ay; 953 ax = x_out; 954 if ( ax < 0 ) 955 ax = -ax; 959 d_out = ax + ay 1160 FT_Pos ax, ay; local [all...] |
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/ |
entropy_coding.c | 104 WebRtc_Word16 ax, axINT, axFRAC; local 109 // ax=(WebRtc_Word16)WEBRTC_SPL_MUL_16_16_RSFT(x, 23637-700, 14); //Q8 110 ax=(WebRtc_Word16)WEBRTC_SPL_MUL_16_16_RSFT(x, 23637, 14); //Q8 111 axINT = WEBRTC_SPL_RSHIFT_W16(ax, 8); //Q0 112 axFRAC = ax&0x00FF; 118 // ax=(WebRtc_Word16)WEBRTC_SPL_MUL_16_16_RSFT(x, 23637+700, 14); //Q8 119 ax=(WebRtc_Word16)WEBRTC_SPL_MUL_16_16_RSFT(x, 23637, 14); //Q8 120 ax = -ax; 121 axINT = 1 + WEBRTC_SPL_RSHIFT_W16(ax, 8); //Q [all...] |