Searched defs:ax (Results 1 - 25 of 40) sorted by relevance

12

/external/quake/quake/src/QW/client/
H A Dblock16.h8 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,( variable
87 movw %ax,(%edi) variable
103 movw %ax,(%edi) variable
119 movw %ax,(%edi) variable
[all...]
/external/quake/quake/src/WinQuake/
H A Dblock16.h27 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,( variable
106 movw %ax,(%edi) variable
122 movw %ax,(%edi) variable
138 movw %ax,(%edi) variable
[all...]
H A Ddosisms.h50 unsigned short ax, ax_hi; member in struct:__anon11613::__anon11615
/external/skia/tests/
H A DColorTest.cpp29 int ax = SkMulDiv255Ceiling(x, a); local
30 REPORTER_ASSERT(reporter, ax <= a);
/external/clang/test/SemaTemplate/
H A Dtemp_arg_type.cpp39 A1<Array<int, 17>::type> ax; variable
/external/qemu/distrib/sdl-1.2.15/src/joystick/nds/
H A DSDL_sysjoystick.c108 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
[all...]
/external/fdlibm/
H A Ds_log1p.c107 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 */
H A De_pow.c107 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
[all...]
/external/webkit/Source/WebCore/platform/graphics/
H A DUnitBezier.h39 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
/external/openssl/crypto/x509/
H A Dx509_trs.c271 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/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/
H A Dopenid.php54 , $ax = false, $sreg = false, $data;
224 $this->ax = (bool) strpos($content, '<Type>http://openid.net/srv/ax/1.0</Type>'); variable
335 $params['openid.ns.ax'] = 'http://openid.net/srv/ax/1.0';
336 $params['openid.ax.mode'] = 'fetch_request';
351 $params['openid.ax.type.' . $alias] = $ns;
355 $params['openid.ax.count.' . $alias] = $count;
358 # Don't send empty ax.requied and ax
[all...]
/external/freetype/src/base/
H A Dftcalc.c926 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
[all...]
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/
H A DShaderUtils.java215 public static final float[][] calcRotationMatrix(final float ax, final float ay, final float az) { argument
217 float cax = (float) Math.cos(ax);
218 float sax = (float) Math.sin(ax);
/external/opencv/cxcore/src/
H A Dcxjacobieigens.cpp73 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 ) */
H A Dcxrand.cpp287 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/qemu/distrib/sdl-1.2.15/src/video/
H A De_pow.h103 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
[all...]
/external/qemu-pc-bios/vgabios/
H A Dvbe.c103 mov ax, #0x0100 variable
106 mov ax, dx variable
108 push ax
110 mov ax, # VBE_DISPI_INDEX_BANK variable
111 out dx, ax
112 pop ax
114 out dx, ax
115 in ax, dx variable
117 cmp dx, ax
119 mov ax, # variable
122 mov ax, #0x014f variable
130 mov ax, #0x0100 variable
148 mov ax, # VBE_DISPI_INDEX_VIRT_WIDTH variable
151 in ax, dx variable
155 mov ax, # VBE_DISPI_INDEX_BPP variable
158 in ax, dx variable
187 mov ax, # VBE_DISPI_INDEX_X_OFFSET variable
194 mov ax, di variable
198 mov ax, # VBE_DISPI_INDEX_Y_OFFSET variable
210 mov ax, #0x004f variable
214 mov ax, #0x014f variable
224 mov ax, # VBE_DISPI_INDEX_ID variable
227 in ax, dx variable
235 mov ax, # VBE_DISPI_INDEX_ID variable
254 mov ax, # VBE_DISPI_INDEX_XRES local
257 mov ax, 4[bp] ; xres local
285 mov ax, # VBE_DISPI_INDEX_BPP variable
288 in ax, dx variable
305 or ax, # VBE_DISPI_GETCAPS variable
308 mov ax, # VBE_DISPI_INDEX_XRES variable
311 in ax, dx variable
313 mov ax, bx variable
325 or ax, # VBE_DISPI_GETCAPS variable
328 mov ax, # VBE_DISPI_INDEX_BPP variable
331 in ax, dx variable
333 mov ax, bx variable
344 mov ax, # VBE_DISPI_INDEX_ENABLE variable
355 mov ax, # VBE_DISPI_INDEX_ENABLE variable
358 in ax, dx variable
366 mov ax, # VBE_DISPI_INDEX_BANK variable
377 mov ax, # VBE_DISPI_INDEX_BANK variable
380 in ax, dx variable
392 mov ax,dx local
395 mov ax,# VBE_DISPI_INDEX_BANK local
401 in ax,dx local
405 mov ax, #0x004f local
408 mov ax,# VBE_DISPI_INDEX_BANK local
412 in ax,dx local
416 mov ax,#0x014F local
426 mov ax, # VBE_DISPI_INDEX_X_OFFSET variable
437 mov ax, # VBE_DISPI_INDEX_X_OFFSET variable
440 in ax, dx variable
448 mov ax, # VBE_DISPI_INDEX_Y_OFFSET variable
459 mov ax, # VBE_DISPI_INDEX_Y_OFFSET variable
462 in ax, dx variable
491 mov ax, # VBE_DISPI_INDEX_VIRT_WIDTH variable
502 mov ax, # VBE_DISPI_INDEX_VIRT_WIDTH variable
505 in ax, dx variable
512 mov ax, # VBE_DISPI_INDEX_VIRT_HEIGHT variable
515 in ax, dx variable
525 mov ax, # VBE_DISPI_INDEX_XRES variable
528 in ax, dx variable
531 mov ax, #0x0011 variable
535 shr ax, #3 variable
545 mov ax, # VBE_DISPI_INDEX_YRES variable
548 in ax, dx variable
573 mov ax, #0x0009 variable
594 mov ax, #0x0506 variable
597 mov ax, #0x0f02 variable
598 out dx, ax variable
602 mov ax, # VBE_DISPI_INDEX_BPP variable
605 in ax, dx variable
705 cmp ax, # VBE_DISPI_ID0 variable
709 mov ax, # BIOSMEM_SEG variable
716 mov ax, # VBE_DISPI_ID5 variable
734 mov ax, #0xc000 variable
739 mov ax, #0xc000 variable
1058 mov ax, # BIOSMEM_SEG variable
1061 and ax, # VBE_DISPI_ENABLED variable
1064 mov ax, [bx] variable
1073 mov ax, #0x004f variable
1221 mov ax, #0x0100 variable
1224 mov ax, dx variable
1227 cmp ax, dx variable
1229 mov ax, #0x004f variable
1234 mov ax, #0x004f variable
1237 mov ax, #0x014f variable
1263 mov ax, cx variable
1269 mov ax, #0x0100 variable
1278 shl ax, #3 variable
1294 shr ax, #3 variable
1301 mov ax, #0x004f variable
1349 mov ax, #0x0100 variable
1352 mov ax, cx variable
1354 mov ax, dx variable
1356 mov ax, #0x004f variable
1364 mov ax, #0x004f variable
1385 mov ax, #0x0100 variable
1393 or ax, # VBE_DISPI_8BIT_DAC variable
1396 and ax, #~ VBE_DISPI_8BIT_DAC variable
1402 and ax, # VBE_DISPI_8BIT_DAC variable
1406 mov ax, #0x004f variable
1409 mov ax, #0x014f variable
1447 mov ax, #0x004f variable
1450 mov ax, #0x014f variable
[all...]
/external/clang/test/SemaCXX/
H A Dnested-name-spec.cpp11 int ax; member in namespace:A
16 // FIXME: there is a member 'ax'; it's just not a class.
17 ::A::ax::undef ex3; // expected-error {{no member named 'ax'}}
59 int x = ::A::ax = A::C::cx;
89 { int A; A::ax = 0; } member in class:A
90 { typedef int A; A::ax = 0; } // expected-error{{expected a class or namespace}} member in class:A
91 { typedef A::C A; A::ax = 0; } // expected-error {{no member named 'ax'}} member in class:A
/external/jpeg/
H A Djmemdos.c99 unsigned short ax, dx, bx; member in struct:__anon6576
103 unsigned short ax, dx, bx; member in struct:__anon6577
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
[all...]
/external/opencv/cv/src/
H A Dcvrotcalipers.cpp150 double ax = vect[n-1].x; local
158 double convexity = ax * by - ay * bx;
165 ax = bx;
H A Dcvconvhull.cpp75 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) )
/external/qemu/distrib/jpeg-6b/
H A Djmemdos.c99 unsigned short ax, dx, bx; member in struct:__anon10430
103 unsigned short ax, dx, bx; member in struct:__anon10431
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
[all...]
/external/qemu/distrib/sdl-1.2.15/src/joystick/bsd/
H A DSDL_sysjoystick.c298 int ax; local
299 for (ax = 0; ax < JOYAXE_count; ax++)
300 hw->axis_map[ax] = -1;
/external/qemu-pc-bios/vgabios/tests/lfbprof/
H A Dlfbprof.h99 unsigned short ax, bx, cx, dx, si, di, cflag; member in struct:_RMWORDREGS
126 "or ax,bx" \
/external/qemu/distrib/libpng-1.2.19/
H A Dpngvcrd.c236 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, local
2357 add ax, cx local
2359 shr ax, 1 // divide by 2 local
[all...]

Completed in 573 milliseconds

12