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

1 2

  /external/libavc/encoder/
ime_macros.h 37 #define ABS(x) ((x) < 0 ? (-(x)) : (x))
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/
syntax.s 13 ABS .l1 a4 , a11
14 ABS .L2x A5, B13
  /external/libmpeg2/common/
icv_macros.h 41 #define ABS(x) ((x) < 0 ? (-1 * (x)) : (x))
impeg2_macros.h 23 #define ABS(x) ((x) < 0 ? (-1 * (x)) : (x))
  /external/libavc/common/
ih264_macros.h 98 #define ABS(x) ((x) < 0 ? (-(x)) : (x))
  /external/libhevc/common/
ihevc_macros.h 45 #define ABS(x) ((((WORD32)(x)) > 0) ? (x) : -(x))
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_util.h 133 #define ABS(a) (((a) < 0) ? -(a) : (a))
  /hardware/invensense/6515/libsensors_iio/software/core/driver/include/
mlmath.h 82 #ifndef ABS
83 #define ABS(x) (((x)>=0)?(x):-(x))
  /hardware/invensense/65xx/libsensors_iio/software/core/driver/include/
mlmath.h 82 #ifndef ABS
83 #define ABS(x) (((x)>=0)?(x):-(x))
  /system/core/libutils/
LinearTransform.cpp 37 static inline T ABS(T x) { return (x < 0) ? -x : x; }
142 // Compute abs(val - basis_64). Keep track of whether or not this delta
156 invert_frac ? D : ABS(N),
157 invert_frac ? ABS(N) : D,
163 // underflow unless ABS(basis2) is large enough to pull us back into the
172 if (ABS(basis2) <= static_cast<int64_t>(scaled & INT64_MAX))
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/
ComposableFunction.java 59 /** The {@code FastMath.abs} method wrapped as a {@link ComposableFunction}. */
60 public static final ComposableFunction ABS = new ComposableFunction() {
64 return FastMath.abs(d);
229 /** The {@code FastMath.abs} method wrapped as a {@link ComposableFunction}. */
  /external/giflib/
quantize.c 19 #define ABS(x) ((x) > 0 ? (x) : (-(x)))
169 if (MaxRGBError[0] < ABS(OutputColorMap[Index].Red - RedInput[i]))
170 MaxRGBError[0] = ABS(OutputColorMap[Index].Red - RedInput[i]);
171 if (MaxRGBError[1] < ABS(OutputColorMap[Index].Green - GreenInput[i]))
172 MaxRGBError[1] = ABS(OutputColorMap[Index].Green - GreenInput[i]);
173 if (MaxRGBError[2] < ABS(OutputColorMap[Index].Blue - BlueInput[i]))
174 MaxRGBError[2] = ABS(OutputColorMap[Index].Blue - BlueInput[i]);
  /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 */
  /toolchain/binutils/binutils-2.25/bfd/
cpu-ia64-opc.c 469 #define ABS IA64_OPND_CLASS_ABS
554 { ABS, ins_cimmu, ext_cimmu, 0, {{ 5, 20 }}, UDEC, /* CCNT5 */
556 { ABS, ins_cnt, ext_cnt, 0, {{ 2, 27 }}, UDEC, /* CNT2a */
558 { ABS, ins_cnt2b, ext_cnt2b, 0, {{ 2, 27 }}, UDEC, /* CNT2b */
560 { ABS, ins_cnt2c, ext_cnt2c, 0, {{ 2, 30 }}, UDEC, /* CNT2c */
562 { ABS, ins_immu, ext_immu, 0, {{ 5, 14}}, UDEC, /* CNT5 */
564 { ABS, ins_immu, ext_immu, 0, {{ 6, 27}}, UDEC, /* CNT6 */
566 { ABS, ins_cimmu, ext_cimmu, 0, {{ 6, 20}}, UDEC, /* CPOS6a */
568 { ABS, ins_cimmu, ext_cimmu, 0, {{ 6, 14}}, UDEC, /* CPOS6b */
570 { ABS, ins_cimmu, ext_cimmu, 0, {{ 6, 31}}, UDEC, /* CPOS6c *
    [all...]
  /development/ndk/platforms/android-9/arch-mips/include/asm/
asm.h 50 #define ABS(symbol,value) .globl symbol; symbol = value
  /external/dbus/dbus/
dbus-internals.h 252 #undef ABS
253 #define ABS(a) (((a) < 0) ? -(a) : (a))
  /external/icu/icu4c/source/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/libopus/celt/
arch.h 72 #define ABS(x) ((x) < 0 ? (-(x)) : (x)) /**< Absolute integer value. */
  /external/mesa3d/src/mesa/swrast/
s_blit.c 35 #define ABS(X) ((X) < 0 ? -(X) : (X))
115 const GLint srcWidth = ABS(srcX1 - srcX0);
116 const GLint dstWidth = ABS(dstX1 - dstX0);
117 const GLint srcHeight = ABS(srcY1 - srcY0);
118 const GLint dstHeight = ABS(dstY1 - dstY0);
495 const GLint srcWidth = ABS(srcX1 - srcX0);
496 const GLint dstWidth = ABS(dstX1 - dstX0);
497 const GLint srcHeight = ABS(srcY1 - srcY0);
498 const GLint dstHeight = ABS(dstY1 - dstY0);
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/self_test/
inv_self_test.c 28 #ifndef ABS
29 #define ABS(x)(((x) >= 0) ? (x) : -(x))
486 if (ABS(accel_bias[1].l) > ABS(accel_bias[0].l)) {
489 if (ABS(accel_bias[2].l) > ABS(accel_bias[axis].l)) {
  /prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/asm/
asm.h 50 #define ABS(symbol,value) .globl symbol; symbol = value
  /prebuilts/ndk/current/platforms/android-13/arch-mips/usr/include/asm/
asm.h 50 #define ABS(symbol,value) .globl symbol; symbol = value
  /prebuilts/ndk/current/platforms/android-14/arch-mips/usr/include/asm/
asm.h 50 #define ABS(symbol,value) .globl symbol; symbol = value
  /prebuilts/ndk/current/platforms/android-15/arch-mips/usr/include/asm/
asm.h 50 #define ABS(symbol,value) .globl symbol; symbol = value
  /prebuilts/ndk/current/platforms/android-16/arch-mips/usr/include/asm/
asm.h 50 #define ABS(symbol,value) .globl symbol; symbol = value

Completed in 1713 milliseconds

1 2