Searched refs:ABS (Results 1 - 25 of 33) sorted by relevance

12

/external/grub/stage2/
H A Dapm.S70 movw %ax, ABS(EXT_C(apm_bios_info)) + 2
72 movl %ebx, ABS(EXT_C(apm_bios_info)) + 4
74 movw %cx, ABS(EXT_C(apm_bios_info)) + 8
76 movw %dx, ABS(EXT_C(apm_bios_info)) + 10
78 movl %esi, ABS(EXT_C(apm_bios_info)) + 14
80 movw %di, ABS(EXT_C(apm_bios_info)) + 18
102 movw %ax, ABS(EXT_C(apm_bios_info))
104 movw %cx, ABS(EXT_C(apm_bios_info)) + 12
109 andw $0xfffd, ABS(EXT_C(apm_bios_info)) + 12
H A Dstart_eltorito.S40 #define ABS(x) (x-_start+BOOTSEC_LOCATION) define
49 #define MSG(x) mov $ABS(x), %si; call message;
69 ljmp $0, $ABS(real_start)
93 mov %dl, ABS(BootDrive)
100 mov ABS(bi_length), %eax
107 mov ABS(bi_file), %eax
115 mov $ABS(firstlist - BOOTSEC_LISTSIZE), %si
117 mov ABS(BootDrive), %dl /* this makes sure %dl is our "boot" drive */
137 mov $ABS(dapa), %si /* Load up the DAPA */
145 cmp ABS(MaxTransfe
[all...]
H A Dstart.S35 # define ABS(x) (x-_start+0x2000)
37 # define ABS(x) (x-_start+0x8000)
41 #define MSG(x) movw $ABS(x), %si; call message
74 movw $ABS(firstlist - BOOTSEC_LISTSIZE), %di
H A Dasm.S42 # define ABS(x) ((x) - EXT_C(main) + 0x2200)
44 # define ABS(x) ((x) - EXT_C(main) + 0x8200)
71 ljmp $0, $ABS(codestart)
311 movl $ABS(int1_handler), %eax
436 movw $ABS(EXT_C(io_map)), %si
451 cmpw $(ABS(EXT_C(io_map)) + (IO_MAP_SIZE + 1) * 2), %si
482 movw %ax, ABS(int15_offset)
484 movw %ax, ABS(int15_segment)
487 movw $ABS(int15_handler), %ax
506 movw $ABS(int15_handle
[all...]
/external/grub/stage1/
H A Dstage1.S30 #define ABS(x) (x-_start+0x7c00) define
33 #define MSG(x) movw $ABS(x), %si; call message
128 ljmp $0, $ABS(real_start)
145 MOV_MEM_TO_AL(ABS(boot_drive)) /* movb ABS(boot_drive), %al */
178 MOV_MEM_TO_AL(ABS(force_lba)) /* movb ABS(force_lba), %al */
189 movw $ABS(disk_address_packet), %si
194 movl ABS(stage2_sector), %ebx
250 movw $ABS(sector
[all...]
/external/skia/third_party/glu/libtess/
H A Dgeom.h75 #define ABS(x) ((x) < 0 ? -(x) : (x)) macro
76 #define VertL1dist(u,v) (ABS(u->s - v->s) + ABS(u->t - v->t))
H A Dnormal.c67 #define ABS(x) ((x) < 0 ? -(x) : (x)) macro
73 if( ABS(v[1]) > ABS(v[0]) ) { i = 1; }
74 if( ABS(v[2]) > ABS(v[i]) ) { i = 2; }
/external/speex/libspeex/
H A Dltp.h46 #define gain_3tap_to_1tap(g) (ABS(g[1]) + (g[0]>0 ? g[0] : -SHR16(g[0],1)) + (g[2]>0 ? g[2] : -SHR16(g[2],1)))
48 #define gain_3tap_to_1tap(g) (ABS(g[1]) + (g[0]>0 ? g[0] : -.5*g[0]) + (g[2]>0 ? g[2] : -.5*g[2]))
H A Dnb_celp.c381 (ABS(2*nol_pitch[i]-ol_pitch)<=2 || ABS(3*nol_pitch[i]-ol_pitch)<=3 ||
382 ABS(4*nol_pitch[i]-ol_pitch)<=4 || ABS(5*nol_pitch[i]-ol_pitch)<=5))
1238 lsp_dist = ADD32(lsp_dist, EXTEND32(ABS(st->old_qlsp[i] - qlsp[i])));
1367 if ((tmp>best_pitch_gain&&ABS(2*best_pitch-pitch)>=3&&ABS(3*best_pitch-pitch)>=4&&ABS(4*best_pitch-pitch)>=5)
1368 || (tmp>MULT16_16_Q15(QCONST16(.6,15),best_pitch_gain)&&(ABS(best_pitch-2*pitch)<3||ABS(best_pitc
[all...]
H A Darch.h81 #define ABS(x) ((x) < 0 ? (-(x)) : (x)) /**< Absolute integer value. */ macro
H A Dfilters.c697 (ABS(2*nol_pitch[i]-corr_pitch)<=2 || ABS(3*nol_pitch[i]-corr_pitch)<=3 ||
698 ABS(4*nol_pitch[i]-corr_pitch)<=4 || ABS(5*nol_pitch[i]-corr_pitch)<=5))
/external/quake/quake/src/QW/scitech/include/
H A Ddebug.h228 #ifndef ABS
229 # define ABS(a) ((a) >= 0 ? (a) : -(a)) macro
/external/quake/quake/src/WinQuake/scitech/INCLUDE/
H A DDEBUG.H228 #ifndef ABS
229 # define ABS(a) ((a) >= 0 ? (a) : -(a)) macro
/external/dbus/dbus/
H A Ddbus-sysdeps-util.c135 if (ABS(3.5 - val) > 1e-6)
H A Ddbus-internals.h248 #undef ABS macro
249 #define ABS(a) (((a) < 0) ? -(a) : (a)) macro
/external/webkit/Source/WebKit/mac/Misc/
H A DWebNSViewExtras.m96 float deltax = ABS([nextEvent locationInWindow].x - [mouseDownEvent locationInWindow].x);
97 float deltay = ABS([nextEvent locationInWindow].y - [mouseDownEvent locationInWindow].y);
/external/llvm/lib/MC/
H A DMCStreamer.cpp54 MCSymbol *ABS = Context.CreateTempSymbol();
55 EmitAssignment(ABS, Expr);
56 return MCSymbolRefExpr::Create(ABS, Context);
113 const MCExpr *ABS = ForceExpAbs(Value); local
114 EmitValue(ABS, Size, AddrSpace);
/external/libpng/contrib/gregbook/
H A Drpng2-x.c126 #define ABS(a) ((a)<0?-(a):(a)) macro
1248 gray = (double)MAX(ABS(y), ABS(x)) / grayspot;
1255 s = gray * ((double)(ABS(x)+ABS(y)) / (double)(hw + hh));
2013 gray = (double)MAX(ABS(y), ABS(x)) / grayspot;
2020 s = gray * ((double)(ABS(x)+ABS(y)) / (double)(hw + hh));
H A Drpng2-win.c109 #define ABS(a) ((a)<0?-(a):(a)) macro
978 gray = (double)MAX(ABS(y), ABS(x)) / grayspot;
985 s = gray * ((double)(ABS(x)+ABS(y)) / (double)(hw + hh));
/external/icu4c/common/
H A Dutrie.c31 #undef ABS macro
32 #define ABS(x) ((x)>=0 ? (x) : -(x)) macro
254 return trie->data[ABS(block)+(c&UTRIE_MASK)];
552 trie->map[ABS(trie->index[i])>>UTRIE_SHIFT]=0;
683 trie->index[i]=trie->map[ABS(trie->index[i])>>UTRIE_SHIFT];
/external/webkit/Tools/android/flex-2.5.4a/
H A Dgen.c240 ecgroup[i] = ABS( ecgroup[i] );
942 i, ABS( tecbck[i] ) );
944 mkdata( ABS( tecbck[i] ) );
H A Dflexdef.h111 #ifndef ABS
112 #define ABS(x) ((x) < 0 ? -(x) : (x)) macro
H A Ddfa.c207 ec = ABS( ecgroup[i] );
996 else if ( ABS( ecgroup[sym] ) == transsym )
/external/kernel-headers/original/asm-mips/
H A Dasm.h91 * ABS - export absolute symbol
93 #define ABS(symbol,value) \ macro
/external/ppp/pppd/plugins/rp-pppoe/
H A Dif.c541 #define ABS(x) ((x) < 0 ? -(x) : (x))
747 dl_abssaplen = ABS(dlp->info_ack.dl_sap_length);

Completed in 444 milliseconds

12