/external/quake/quake/src/QW/client/ |
block16.h | 8 movw 0x12345678(,%eax,2),%ax 11 movw %ax,(%edi) variable 23 movw 0x12345678(,%eax,2),%ax 26 movw %ax,(%edi) variable 38 movw 0x12345678(,%eax,2),%ax 41 movw %ax,(%edi) variable 53 movw 0x12345678(,%eax,2),%ax 56 movw %ax,(%edi) variable 69 movw 0x12345678(,%eax,2),%ax 72 movw %ax,(%edi variable 87 movw %ax,(%edi) variable 103 movw %ax,(%edi) variable 119 movw %ax,(%edi) variable [all...] |
/external/quake/quake/src/WinQuake/ |
block16.h | 27 movw 0x12345678(,%eax,2),%ax 30 movw %ax,(%edi) variable 42 movw 0x12345678(,%eax,2),%ax 45 movw %ax,(%edi) variable 57 movw 0x12345678(,%eax,2),%ax 60 movw %ax,(%edi) variable 72 movw 0x12345678(,%eax,2),%ax 75 movw %ax,(%edi) variable 88 movw 0x12345678(,%eax,2),%ax 91 movw %ax,(%edi variable 106 movw %ax,(%edi) variable 122 movw %ax,(%edi) variable 138 movw %ax,(%edi) variable [all...] |
/external/ceres-solver/internal/ceres/ |
gradient_checker_test.cc | 76 double ax = 0; local 79 ax += a_[j][u] * parameters[j][u]; 85 double f = *residuals = exp(-ax); 129 double ax = 0; local 132 ax += a_[j][u] * parameters[j][u]; 138 double f = *residuals = exp(-ax);
|
gradient_checking_cost_function_test.cc | 92 double ax = 0; local 95 ax += a_[j][u] * parameters[j][u]; 101 double f = *residuals = exp(-ax);
|
/external/qemu/distrib/sdl-1.2.15/src/joystick/nds/ |
SDL_sysjoystick.c | 108 short ax=0,v=0,h=0; local 109 if((keysd&KEY_UP)) {ax=1;v=-10;SDL_PrivateJoystickAxis(joystick,ax,v);prevkey=KEY_UP;}//fprintf(stderr,"KEY_UP\n");} 110 if((keysd&KEY_DOWN)) {ax=1;v=10;SDL_PrivateJoystickAxis(joystick,ax,v);prevkey=KEY_DOWN;}//fprintf(stderr,"KEY_DOWN\n");} 111 if((keysd&KEY_LEFT)) {ax=0;h=-10;SDL_PrivateJoystickAxis(joystick,ax,h);prevkey=KEY_LEFT;}//fprintf(stderr,"KEY_LEFT\n");} 112 if((keysd&KEY_RIGHT)) {ax=0;h=10;SDL_PrivateJoystickAxis(joystick,ax,h);prevkey=KEY_RIGHT;}//fprintf(stderr,"KEY_RIGHT\n");} 114 if((keysu&KEY_UP)) {ax=1;v=0;SDL_PrivateJoystickAxis(joystick,ax,v);prevkey=0;}//fprintf(stderr,"KEY_UP\n"); [all...] |
/external/clang/test/SemaTemplate/ |
temp_arg_type.cpp | 39 A1<Array<int, 17>::type> ax; variable
|
/external/eigen/demos/opengl/ |
gpuhelper.cpp | 63 Vector3f ax = Matrix3f::Identity().col(2).cross(vec); local 64 ax.normalize(); 69 glRotatef(angle, ax.x(), ax.y(), ax.z()); 84 Vector3f ax = Matrix3f::Identity().col(2).cross(vec); local 85 ax.normalize(); 90 glRotatef(angle, ax.x(), ax.y(), ax.z()) [all...] |
/external/eigen/unsupported/Eigen/src/AutoDiff/ |
AutoDiffJacobian.h | 59 ActiveInput ax = x.template cast<ActiveScalar>(); local 67 ax[i].derivatives() = DerivativeType::Unit(this->inputs(),i); 69 Functor::operator()(ax, &av);
|
/external/webkit/Source/WebCore/platform/graphics/ |
UnitBezier.h | 39 ax = 1.0 - cx -bx; 48 // `ax t^3 + bx t^2 + cx t' expanded using Horner's rule. 49 return ((ax * t + bx) * t + cx) * t; 59 return (3.0 * ax * t + 2.0 * bx) * t + cx; 114 double ax; member in struct:WebCore::UnitBezier
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_log1p.c | 104 int32_t k,hx,hu,ax; local 107 ax = hx&0x7fffffff; 111 if(ax>=0x3ff00000) { /* x <= -1.0 */ 115 if(ax<0x3e200000) { /* |x| < 2**-29 */ 117 &&ax<0x3c900000) /* |x| < 2**-54 */
|
s_log1pf.c | 42 int32_t k,hx,hu,ax; local 45 ax = hx&0x7fffffff; 49 if(ax>=0x3f800000) { /* x <= -1.0 */ 53 if(ax<0x38000000) { /* |x| < 2**-15 */ 55 &&ax<0x33800000) /* |x| < 2**-24 */
|
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...] |
/external/fdlibm/ |
s_log1p.c | 107 int k,hx,hu,ax; local 110 ax = hx&0x7fffffff; 114 if(ax>=0x3ff00000) { /* x <= -1.0 */ 118 if(ax<0x3e200000) { /* |x| < 2**-29 */ 120 &&ax<0x3c900000) /* |x| < 2**-54 */
|
/external/openssl/crypto/x509/ |
x509_trs.c | 271 X509_CERT_AUX *ax; local 272 ax = x->aux; 273 if(!ax) return X509_TRUST_UNTRUSTED; 274 if(ax->reject) { 275 for(i = 0; i < sk_ASN1_OBJECT_num(ax->reject); i++) { 276 obj = sk_ASN1_OBJECT_value(ax->reject, i); 280 if(ax->trust) { 281 for(i = 0; i < sk_ASN1_OBJECT_num(ax->trust); i++) { 282 obj = sk_ASN1_OBJECT_value(ax->trust, i);
|
/external/eigen/Eigen/src/Core/ |
StableNorm.h | 124 RealScalar ax = internal::abs(coeff(j)); local 125 if(ax > ab2) abig += internal::abs2(ax*s2m); 126 else if(ax < b1) asml += internal::abs2(ax*s1m); 127 else amed += internal::abs2(ax);
|
/external/eigen/bench/ |
bench_norm.cpp | 35 Scalar ax = internal::abs(v.coeff(i)); local 36 if (scale >= ax) 38 ssq += internal::abs2(ax/scale); 42 ssq = Scalar(1) + ssq * internal::abs2(scale/ax); 43 scale = ax; 146 Packet ax = internal::pabs(v.template packet<Aligned>(j)); 147 Packet ax_s2m = internal::pmul(ax,ps2m); 148 Packet ax_s1m = internal::pmul(ax,ps1m); 149 Packet maskBig = internal::plt(pb2,ax); 150 Packet maskSml = internal::plt(ax,pb1) [all...] |
/external/skia/tests/ |
ColorTest.cpp | 135 int ax = SkMulDiv255Ceiling(x, a); local 136 REPORTER_ASSERT(reporter, ax <= a);
|
/frameworks/av/tools/resampler_tools/ |
fir.cpp | 34 double ax,ans,y; local 35 ax=fabs(x); 36 if (ax < 3.75) { 42 y=3.75/ax; 43 ans=(exp(ax)/sqrt(ax))*(0.39894228+y*(0.1328592e-1
|
/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 | 88 // A(ax,ay) is the vector p1->p2. 89 final int ax = mP2X - mP1X; local 103 final float crossProdAB = ax * by - ay * bx; 104 final float dotProdAB = ax * bx + ay * by; 105 final float normASquare = ax * ax + ay * ay; 108 mSlope1X = invHalfNormASquare * (dotProdAB * ax + crossProdAB * ay); 109 mSlope1Y = invHalfNormASquare * (dotProdAB * ay - crossProdAB * ax); 112 mSlope1X = ax; 127 final float crossProdAB = ax * by - ay * bx [all...] |
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/ |
openid.php | 30 * AX and SREG extensions are supported. 32 * These are arrays, with values being AX schema paths (the 'path' part of the URL). 54 , $ax = false, $sreg = false, $data; 223 # Does the server advertise support for either AX or SREG? 224 $this->ax = (bool) strpos($content, '<Type>http://openid.net/srv/ax/1.0</Type>'); variable 246 # AX can be used only with OpenID 2.0, so checking only SREG 335 $params['openid.ns.ax'] = 'http://openid.net/srv/ax/1.0'; 336 $params['openid.ax.mode'] = 'fetch_request' [all...] |
/external/clang/test/CodeGenCXX/ |
dynamic-cast-hint.cpp | 42 volatile X *ax = dynamic_cast<X *>(a); local
|
/external/freetype/src/base/ |
ftcalc.c | 926 FT_Pos ax = in_x; local 932 if ( ax < 0 ) 933 ax = -ax; 936 d_in = ax + ay; 938 ax = out_x; 939 if ( ax < 0 ) 940 ax = -ax; 944 d_out = ax + ay [all...] |
/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 ) */
|