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

1 2 3

  /external/libavc/encoder/
ime_macros.h 37 #define ABS(x) ((x) < 0 ? (-(x)) : (x))
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic6x/
syntax.s 13 ABS .l1 a4 , a11
14 ABS .L2x A5, B13
  /device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/
asm.h 128 * ABS
131 #define ABS(_name_, _value_) \
  /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/base/libs/common_time/
LinearTransform.cpp 36 static inline T ABS(T x) { return (x < 0) ? -x : x; }
141 // Compute abs(val - basis_64). Keep track of whether or not this delta
155 invert_frac ? D : ABS(N),
156 invert_frac ? ABS(N) : D,
162 // underflow unless ABS(basis2) is large enough to pull us back into the
171 if (ABS(basis2) <= static_cast<int64_t>(scaled & INT64_MAX))
  /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))
  /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]);
  /external/libxaac/decoder/
ixheaacd_tcx_fwd_alcnx.c 58 #define ABS(A) ((A) < 0 ? (-A) : (A))
77 if (ABS(x[k]) > ftemp) ftemp = ABS(x[k]);
ixheaacd_tcx_fwd_mdct.c 59 #define ABS(A) ((A) < 0 ? (-A) : (A))
144 if (ABS(data_r[i]) > ftemp) ftemp = ABS(data_r[i]);
145 if (ABS(data_i[i]) > ftemp) ftemp = ABS(data_i[i]);
ixheaacd_imdct.c 70 #define ABS(A) ((A) < 0 ? (-A) : (A))
217 scale = (WORD32)(ixheaacd_norm32((WORD32)((ABS(gain) + 1))));
227 if (ABS(ztemp) > ftemp) ftemp = ABS(ztemp);
244 if (ABS(last_lpc[k]) > ftemp) ftemp = ABS(last_lpc[k]);
257 if (ABS(fac_data[k + 1]) > itemp) itemp = ABS(fac_data[k + 1]);
  /toolchain/binutils/binutils-2.27/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...]
  /external/icu/icu4c/source/common/
utrie.cpp 33 #undef ABS
34 #define ABS(x) ((x)>=0 ? (x) : -(x))
256 return trie->data[ABS(block)+(c&UTRIE_MASK)];
554 trie->map[ABS(trie->index[i])>>UTRIE_SHIFT]=0;
685 trie->index[i]=trie->map[ABS(trie->index[i])>>UTRIE_SHIFT];
    [all...]
  /external/libpng/contrib/gregbook/
rpng2-win.c 137 #define ABS(a) ((a)<0?-(a):(a))
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_blit.c 36 #define ABS(X) ((X) < 0 ? -(X) : (X))
121 const GLint srcWidth = ABS(srcX1 - srcX0);
122 const GLint dstWidth = ABS(dstX1 - dstX0);
123 const GLint srcHeight = ABS(srcY1 - srcY0);
124 const GLint dstHeight = ABS(dstY1 - dstY0);
520 const GLint srcWidth = ABS(srcX1 - srcX0);
521 const GLint dstWidth = ABS(dstX1 - dstX0);
522 const GLint srcHeight = ABS(srcY1 - srcY0);
523 const GLint dstHeight = ABS(dstY1 - dstY0);
  /external/tensorflow/tensorflow/cc/gradients/
math_grad_test.cc 28 using ops::Abs;
60 ABS,
108 case ABS:
109 y = Abs(scope_, x);
224 TEST_F(CWiseUnaryGradTest, Abs) {
226 TestCWiseGrad<float, float>(ABS, x_fn);
845 auto y = Div(scope_, x, Add(scope_, Const<float>(scope_, 1), Abs(scope_, x)));
855 RealDiv(scope_, x, Add(scope_, Const<float>(scope_, 1), Abs(scope_, x)));
  /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)) {
  /external/speex/libspeex/
arch.h 81 #define ABS(x) ((x) < 0 ? (-(x)) : (x)) /**< Absolute integer value. */
  /external/swiftshader/third_party/LLVM/lib/MC/
MCStreamer.cpp 57 MCSymbol *ABS = Context.CreateTempSymbol();
58 EmitAssignment(ABS, Expr);
59 return MCSymbolRefExpr::Create(ABS, Context);
115 const MCExpr *ABS = ForceExpAbs(Value);
116 EmitValue(ABS, Size, AddrSpace);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/
marshal.c 24 #ifndef ABS
25 #define ABS(x) ((x) < 0 ? -(x) : (x))
166 n = ABS(Py_SIZE(ob));
591 size = 1 + (ABS(n) - 1) / PyLong_MARSHAL_RATIO;
592 shorts_in_top_digit = 1 + (ABS(n) - 1) % PyLong_MARSHAL_RATIO;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Python/
marshal.c 24 #undef ABS
25 #define ABS(x) ((x) < 0 ? -(x) : (x))
187 n = ABS(Py_SIZE(ob));
596 size = 1 + (ABS(n) - 1) / PyLong_MARSHAL_RATIO;
597 shorts_in_top_digit = 1 + (ABS(n) - 1) % PyLong_MARSHAL_RATIO;
    [all...]

Completed in 668 milliseconds

1 2 3