/system/core/include/cutils/ |
compiler.h | 25 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), true )) 26 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), false )) 28 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), 1 )) 29 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), 0 ))
|
/libcore/include/ |
StaticAssert.h | 25 #define STATIC_ASSERT(exp, msg) typedef StaticAssert<(bool(exp))> msg[bool(exp) ? 1 : -1]
|
/external/icu4c/common/ |
uassert.h | 25 #define U_ASSERT(exp) 28 #define U_ASSERT(exp) assert(exp)
|
/external/srec/portable/include/ |
passert.h | 45 #define passert(exp) assert(exp) 49 #define passert(exp) 56 #define passert(exp) do { \ 57 if (!(exp)) \ 59 pfprintf(PSTDERR, __FILE__ "(%d): " #exp " failed.\n",__LINE__); \
|
/hardware/ti/omap3/dspbridge/inc/ |
dbc.h | 53 #define DBC_Assert( exp ) \ 54 if (!(exp)) \ 55 (*GT->ERRORFXN)("%s, line %d: Assertion (" #exp ") failed.\n", \ 62 #define DBC_Assert(exp) 63 #define DBC_Require(exp) 64 #define DBC_Ensure(exp)
|
/bionic/libm/src/ |
s_isnormal.c | 26 * $FreeBSD: src/lib/msun/src/s_isnormal.c,v 1.1 2004/07/09 03:32:39 das Exp $ 39 return (u.bits.exp != 0 && u.bits.exp != 2047); 48 return (u.bits.exp != 0 && u.bits.exp != 255); 57 return (u.bits.exp != 0 && u.bits.exp != 32767);
|
fpmath.h | 27 * $FreeBSD: src/lib/libc/include/fpmath.h,v 1.3 2005/02/06 03:23:31 das Exp $ 38 unsigned int exp :8; member in struct:IEEEf2bits::__anon619 42 unsigned int exp :8; 57 unsigned int exp :11; member in struct:IEEEd2bits::__anon620 63 unsigned int exp :11; 67 unsigned int exp :11;
|
/external/antlr/src/org/antlr/runtime/ |
UnwantedTokenException.java | 44 String exp = ", expected "+expecting; local 46 exp = ""; 49 return "UnwantedTokenException(found="+null+exp+")"; 51 return "UnwantedTokenException(found="+token.getText()+exp+")";
|
/external/fdlibm/ |
s_ldexp.c | 18 double ieee_ldexp(double value, int exp) 20 double ieee_ldexp(value, exp) 21 double value; int exp; 25 value = ieee_scalbn(value,exp);
|
/frameworks/base/media/libstagefright/codecs/amrnb/common/src/ |
log2.cpp | 170 Word16 exp; local 174 exp = norm_l(L_x); 175 result = L_x << exp; 176 Log2_norm(result, exp, pExponent, pFraction);
|
inv_sqrt.cpp | 158 Word16 exp, i, a, tmp; 169 exp = norm_l (L_x); 170 L_x = L_shl (L_x, exp); // L_x is normalize 172 exp = sub (30, exp); 174 if ((exp & 1) == 0) // If exponent even -> shift right 178 exp = shr (exp, 1); 179 exp = add (exp, 1) 226 Word16 exp; local 239 L_x <<= exp; \/* L_x is normalize *\/ local 266 L_y >>= exp; \/* denormalization, exp always 0< exp < 31 *\/ local [all...] |
/external/sonivox/arm-wt-22k/lib_src/ |
eas_flog.c | 66 EAS_U32 exp; local 74 for (exp = 31; exp > 0; exp--) 82 exp <<= LOG_EXPONENT_SHIFT; 92 exp += eas_log2_table[n] + interp; 94 return (EAS_I32) exp;
|
/frameworks/base/media/libstagefright/codecs/amrwb/src/ |
scale_signal.cpp | 49 int16 exp (i) : exponent: x = round(x << exp) 118 int16 exp /* (i) : exponent: x = round(x << exp) */ 129 if (exp > 0) 133 L_tmp = shl_int32(((int32)x[i] << 16), exp); /* saturation can occur here */ 137 else if (exp < 0) 139 exp = -exp; 140 exp &= 0xf [all...] |
/external/skia/src/core/ |
SkFloatBits.cpp | 6 do right before they return ... >> exp; 8 Round - adds 1 << (exp - 1) 9 Ceil - adds (1 << exp) - 1 39 int exp = unpack_exp(packed) - EXP_BIAS; local 42 if (exp >= 0) { 43 if (exp > 7) { // overflow 46 value <<= exp; local 49 exp = -exp; 50 if (exp > 25) { // underflo 53 value >>= exp; local 65 int exp = unpack_exp(packed) - EXP_BIAS; local 72 value <<= exp; local 95 int exp = unpack_exp(packed) - EXP_BIAS; local 102 value <<= exp; local 125 int exp = unpack_exp(packed) - EXP_BIAS; local 132 value <<= exp; local [all...] |
/frameworks/base/media/libstagefright/codecs/amrwbenc/src/ |
scale.c | 30 Word16 exp /* (i) : exponent: x = round(x << exp) */ 35 if(exp > 0) 39 L_tmp = L_shl2(x[i], 16 + exp); 45 exp = -exp; 49 L_tmp >>= exp; local
|
math_op.c | 35 | Word32 frac, Word16 exp : L_32 = frac << exp-31 (normalised format) | 61 Word16 exp; local 63 exp = norm_l(L_x); 64 L_x = (L_x << exp); /* L_x is normalized */ 65 exp = (31 - exp); 66 Isqrt_n(&L_x, &exp); 67 L_y = (L_x << exp); /* denormalization */ 76 | if value is negative or zero, result is 1 (frac=7fffffff, exp=0). 163 Word16 exp, i, a, tmp; local [all...] |
/external/e2fsprogs/intl/ |
plural.y | 35 #include "plural-exp.h" 52 struct expression *exp; 146 %type <exp> exp 150 start: exp 158 exp: exp '?' exp ':' exp label 162 | exp '|' ex [all...] |
/external/llvm/test/Analysis/BasicAA/ |
dg.exp | 1 load_lib llvm.exp
|
/external/llvm/test/Analysis/CallGraph/ |
dg.exp | 1 load_lib llvm.exp
|
/external/llvm/test/Analysis/Dominators/ |
dg.exp | 1 load_lib llvm.exp
|
/external/llvm/test/Analysis/GlobalsModRef/ |
dg.exp | 1 load_lib llvm.exp
|
/external/llvm/test/Analysis/LoopDependenceAnalysis/ |
dg.exp | 1 load_lib llvm.exp
|
/external/llvm/test/Analysis/LoopInfo/ |
dg.exp | 1 load_lib llvm.exp
|
/external/llvm/test/Analysis/PostDominators/ |
dg.exp | 1 load_lib llvm.exp
|
/external/llvm/test/Analysis/Profiling/ |
dg.exp | 1 load_lib llvm.exp
|