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

1 2

  /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/grub/stage2/
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...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_util.h 132 #define ABS(a) (((a) < 0) ? -(a) : (a))
  /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))
  /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...]
  /external/quake/quake/src/QW/scitech/include/
debug.h 228 #ifndef ABS
229 # define ABS(a) ((a) >= 0 ? (a) : -(a))
  /external/quake/quake/src/WinQuake/scitech/INCLUDE/
DEBUG.H 228 #ifndef ABS
229 # define ABS(a) ((a) >= 0 ? (a) : -(a))
  /frameworks/av/media/libstagefright/codecs/aacenc/basic_op/
basic_op.h 33 #define ABS(a) ((a) >= 0) ? (a) : (-(a))
35 /* Short abs, 1 */
46 /* Long abs, 3 */
  /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)) {
  /bionic/libc/kernel/arch-mips/asm/
asm.h 50 #define ABS(symbol,value) .globl symbol; symbol = value
  /development/ndk/platforms/android-9/arch-mips/include/asm/
asm.h 50 #define ABS(symbol,value) .globl symbol; symbol = value
  /external/icu4c/common/
utrie.cpp 31 #undef ABS
32 #define ABS(x) ((x)>=0 ? (x) : -(x))
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];
    [all...]
  /external/kernel-headers/original/asm-mips/
asm.h 91 * ABS - export absolute symbol
93 #define ABS(symbol,value) \
  /hardware/samsung_slsi/exynos5/libhwjpeg/
ExynosJpegDecoder.cpp 203 #define ABS(a) (((a) < 0) ? (-(a)) : (a))
    [all...]
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/
asm.h 50 #define ABS(symbol,value) .globl symbol; symbol = value
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/
asm.h 50 #define ABS(symbol,value) .globl symbol; symbol = value
  /external/llvm/lib/MC/
MCStreamer.cpp 66 MCSymbol *ABS = Context.CreateTempSymbol();
67 EmitAssignment(ABS, Expr);
68 return MCSymbolRefExpr::Create(ABS, Context);
125 const MCExpr *ABS = ForceExpAbs(Value);
126 EmitValue(ABS, Size, AddrSpace);
  /external/speex/libspeex/
arch.h 81 #define ABS(x) ((x) < 0 ? (-(x)) : (x)) /**< Absolute integer value. */
  /external/webkit/Tools/android/flex-2.5.4a/
flexdef.h 111 #ifndef ABS
112 #define ABS(x) ((x) < 0 ? -(x) : (x))
    [all...]
  /external/libpng/contrib/gregbook/
rpng2-win.c 109 #define ABS(a) ((a)<0?-(a):(a))
    [all...]
rpng2-x.c 126 #define ABS(a) ((a)<0?-(a):(a))
    [all...]
  /frameworks/base/tools/aapt/
Images.cpp 801 #define ABS(a) ((a)<0?-(a):(a))
837 maxGrayDeviation = MAX(ABS(rr - gg), maxGrayDeviation);
838 maxGrayDeviation = MAX(ABS(gg - bb), maxGrayDeviation);
839 maxGrayDeviation = MAX(ABS(bb - rr), maxGrayDeviation);
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmutils.h 589 #ifndef ABS
590 #define ABS(a) (((a) < 0) ? -(a) : (a))
591 #endif /* ABS */
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
rtl.h 37 #undef ABS /* Likewise. */
    [all...]

Completed in 904 milliseconds

1 2