HomeSort by relevance Sort by last modified time
    Searched refs:ABS (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /external/grub/stage2/
apm.S 70 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
start_eltorito.S 40 #define ABS(x) (x-_start+BOOTSEC_LOCATION)
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(MaxTransfer), %b
    [all...]
start.S 35 # 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
asm.S 42 # 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_handler), %a
    [all...]
  /external/grub/stage1/
stage1.S 30 #define ABS(x) (x-_start+0x7c00)
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(sectors), %s
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_deblocking.c 347 else if ( (ABS(mv1 - mv2) >= 4) || (ABS(mv3 - mv4) >= 4) ||
375 if ( (ABS(tmp1 - tmp2) >= 4) || (ABS(tmp3 - tmp4) >= 4) ||
403 (ABS(mb1->mv[ind1].hor - mb2->mv[ind2].hor) >= 4) ||
404 (ABS(mb1->mv[ind1].ver - mb2->mv[ind2].ver) >= 4))
437 else if ((ABS(mb1->mv[0].hor - mb2->mv[10].hor) >= 4) ||
438 (ABS(mb1->mv[0].ver - mb2->mv[10].ver) >= 4) ||
449 else if ((ABS(mb1->mv[1].hor - mb2->mv[11].hor) >= 4) ||
450 (ABS(mb1->mv[1].ver - mb2->mv[11].ver) >= 4) |
    [all...]
h264bsd_util.h 132 #define ABS(a) (((a) < 0) ? -(a) : (a))
  /frameworks/native/libs/utils/
LinearTransform.cpp 26 template<class T> static inline T ABS(T x) { return (x < 0) ? -x : x; }
127 // Compute abs(val - basis_64). Keep track of whether or not this delta
141 invert_frac ? D : ABS(N),
142 invert_frac ? ABS(N) : D,
148 // underflow unless ABS(basis2) is large enough to pull us back into the
157 if (ABS(basis2) <= static_cast<int64_t>(scaled & INT64_MAX))
  /external/speex/libspeex/
ltp.h 46 #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]))
nb_celp.c 381 (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))
    [all...]
  /hardware/invensense/libsensors_iio/software/core/driver/include/
mlmath.h 82 #ifndef ABS
83 #define ABS(x) (((x)>=0)?(x):-(x))
  /hardware/invensense/mlsdk/platform/include/
mlmath.h 94 #ifndef ABS
95 #define ABS(x) (((x)>=0)?(x):-(x))
  /hardware/invensense/libsensors_iio/software/simple_apps/self_test/
inv_self_test.c 27 #ifndef ABS
28 #define ABS(x)(((x) >= 0) ? (x) : -(x))
352 if (ABS(accel_bias[1].l) > ABS(accel_bias[0].l)) {
355 if (ABS(accel_bias[2].l) > ABS(accel_bias[axis].l)) {