HomeSort by relevance Sort by last modified time
    Searched defs:ax (Results 1 - 24 of 24) sorted by null

  /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...]
dosisms.h 50 unsigned short ax, ax_hi; member in struct:__anon6988::__anon6990
  /external/webkit/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/src/
s_log1p.c 103 int32_t k,hx,hu,ax; local
106 ax = hx&0x7fffffff;
110 if(ax>=0x3ff00000) { /* x <= -1.0 */
114 if(ax<0x3e200000) { /* |x| < 2**-29 */
116 &&ax<0x3c900000) /* |x| < 2**-54 */
s_log1pf.c 41 int32_t k,hx,hu,ax; local
44 ax = hx&0x7fffffff;
48 if(ax>=0x3f800000) { /* x <= -1.0 */
52 if(ax<0x31000000) { /* |x| < 2**-29 */
54 &&ax<0x24800000) /* |x| < 2**-54 */
e_pow.c 100 double z,ax,z_h,z_l,p_h,p_l; local
158 ax = fabs(x);
162 z = ax; /*x is +-0,+-inf,+-1*/
197 t = ax-one; /* t has 20 trailing zeros */
209 {ax *= two53; n -= 53; GET_HIGH_WORD(ix,ax); }
217 SET_HIGH_WORD(ax,ix);
220 u = ax-bp[k]; /* bp[0]=1.0, bp[1]=1.5 */
221 v = one/(ax+bp[k]);
225 /* t_h=ax+bp[k] High *
    [all...]
e_powf.c 59 float z,ax,z_h,z_l,p_h,p_l; local
109 ax = fabsf(x);
112 z = ax; /*x is +-0,+-inf,+-1*/
138 t = ax-1; /* t has 20 trailing zeros */
151 {ax *= two24; n -= 24; GET_FLOAT_WORD(ix,ax); }
159 SET_FLOAT_WORD(ax,ix);
162 u = ax-bp[k]; /* bp[0]=1.0, bp[1]=1.5 */
163 v = one/(ax+bp[k]);
168 /* 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 */
e_pow.c 107 double z,ax,z_h,z_l,p_h,p_l; local
166 ax = ieee_fabs(x);
170 z = ax; /*x is +-0,+-inf,+-1*/
201 t = ax-one; /* t has 20 trailing zeros */
213 {ax *= two53; n -= 53; ix = __HI(ax); }
221 __HI(ax) = ix;
224 u = ax-bp[k]; /* bp[0]=1.0, bp[1]=1.5 */
225 v = one/(ax+bp[k]);
229 /* t_h=ax+bp[k] High *
    [all...]
  /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/freetype/src/base/
ftcalc.c 925 FT_Pos ax = in_x; local
931 if ( ax < 0 )
932 ax = -ax;
935 d_in = ax + ay;
937 ax = out_x;
938 if ( ax < 0 )
939 ax = -ax;
943 d_out = ax + ay
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
e_pow.h 103 double z,ax,z_h,z_l,p_h,p_l; local
161 ax = x < 0 ? -x : x; /*fabs(x);*/
165 z = ax; /*x is +-0,+-inf,+-1*/
203 {ax *= two53; n -= 53; GET_HIGH_WORD(ix,ax); }
211 SET_HIGH_WORD(ax,ix);
214 u = ax-bp[k]; /* bp[0]=1.0, bp[1]=1.5 */
215 v = one/(ax+bp[k]);
219 /* t_h=ax+bp[k] High */
222 t_l = ax - (t_h-bp[k])
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/
perf_rt.h 62 an, ax, axx: average temporal statistics - yields stdev */
65 double xx, txx, ax, axx; member in struct:PERF_RTdata_rate
  /external/jpeg/
jmemdos.c 99 unsigned short ax, dx, bx; member in struct:__anon4596
103 unsigned short ax, dx, bx; member in struct:__anon4597
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/qemu/distrib/sdl-1.2.12/src/joystick/bsd/
SDL_sysjoystick.c 285 int ax; local
286 for (ax = 0; ax < JOYAXE_count; ax++)
287 hw->axis_map[ax] = -1;
  /external/qemu/distrib/libpng-1.2.19/
pngvcrd.c 236 mov ax,[esi] local
237 mov [ebx],ax
772 mov ax,[esi] local
773 mov [ebx],ax
935 mov ax,[esi+4] // These 2 lines added 20070717 local
936 mov [ebx+4],ax // Glenn R-P
1985 add ax, cx local
1987 shr ax, 1 \/\/ divide by 2 local
2258 add ax, cx local
2260 shr ax, 1 \/\/ divide by 2 local
2357 add ax, cx local
2359 shr ax, 1 \/\/ divide by 2 local
    [all...]
  /external/webkit/WebCore/rendering/
RenderImage.cpp 411 int ax = tx + leftBorder + leftPad; local
422 context->drawText(style()->font(), textRun, IntPoint(ax, ay + ascent));
424 context->drawText(style()->font(), textRun, IntPoint(ax, ay + ascent));
  /development/samples/AccelerometerPlay/src/com/example/android/accelerometerplay/
AccelerometerPlayActivity.java 173 final float ax = gx * invm; local
194 mAccelX = ax;
  /external/freetype/src/pshinter/
pshalgo.c 942 FT_Pos ax = x_in; local
948 if ( ax < 0 )
949 ax = -ax;
952 d_in = ax + ay;
954 ax = x_out;
955 if ( ax < 0 )
956 ax = -ax;
960 d_out = ax + ay
1161 FT_Pos ax, ay; local
    [all...]
  /external/qemu/android/skin/
trackball.c 492 Fix16 ax = fixedvector_dot( (Fix16Vector)&coord->f, (Fix16Vector)&faxes[0] ); local
505 d[0] = ball->dots[pp][0] - ax;
  /external/webkit/WebCore/platform/graphics/transforms/
TransformationMatrix.cpp 452 double ax, ay, az, aw; local
458 ax = qa[0]; ay = qa[1]; az = qa[2]; aw = qa[3];
461 angle = ax * bx + ay * by + az * bz + aw * bw;
464 ax = -ax; ay = -ay;
481 by = ax;
488 cx = ax * scale + bx * invscale;
    [all...]
  /frameworks/base/core/java/android/webkit/
WebView.java 5311 int ax = Math.abs(deltaX); local
5346 int ax = Math.abs(deltaX); local
5927 float ax = Math.abs(xRate); local
    [all...]
  /external/sqlite/dist/
sqlite3.c 52748 } ax; member in union:vdbeExecUnion
    [all...]

Completed in 511 milliseconds