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

  /external/libhevc/common/
ihevc_macros.h 45 #define ABS(x) ((((WORD32)(x)) > 0) ? (x) : -(x))
  /development/ndk/platforms/android-9/arch-mips/include/asm/
asm.h 50 #define ABS(symbol,value) .globl symbol; symbol = value
  /external/chromium_org/third_party/icu/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/chromium_org/third_party/mesa/src/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);
  /external/chromium_org/third_party/opus/src/celt/
arch.h 72 #define ABS(x) ((x) < 0 ? (-(x)) : (x)) /**< Absolute integer value. */
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/nasm/
nasm-parser.h 53 ABS,
  /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);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
matrix.h 40 #define ABS(x) (fabsf(x))
52 /* abs(value) >= 2^31 -> clamp. */
57 /* abs(value) < 1 -> return -1 or 0. */
62 /* abs(value) >= 2^23 -> shift left. */
  /external/chromium_org/third_party/speex/libspeex/
arch.h 81 #define ABS(x) ((x) < 0 ? (-(x)) : (x)) /**< Absolute integer value. */
  /external/mesa3d/src/gallium/state_trackers/vega/
matrix.h 40 #define ABS(x) (fabsf(x))
52 /* abs(value) >= 2^31 -> clamp. */
57 /* abs(value) < 1 -> return -1 or 0. */
62 /* abs(value) >= 2^23 -> shift left. */
  /external/libpng/contrib/gregbook/
rpng2-win.c 136 #define ABS(a) ((a)<0?-(a):(a))
    [all...]
rpng2-x.c 127 #define ABS(a) ((a)<0?-(a):(a))
    [all...]
  /external/llvm/lib/MC/
MCStreamer.cpp 76 MCSymbol *ABS = Context.CreateTempSymbol();
77 EmitAssignment(ABS, Expr);
78 return MCSymbolRefExpr::Create(ABS, Context);
141 const MCExpr *ABS = ForceExpAbs(Value);
142 EmitValue(ABS, Size);
  /external/owasp/sanitizer/lib/htmlparser-1.3/
htmlparser-1.3-with-transitions.jar 
htmlparser-1.3.jar 

Completed in 418 milliseconds