/libcore/include/ |
StaticAssert.h | 25 #define STATIC_ASSERT(exp, msg) typedef StaticAssert<(bool(exp))> msg[bool(exp) ? 1 : -1]
|
/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 ))
|
/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::__anon705 42 unsigned int exp :8; 57 unsigned int exp :11; member in struct:IEEEd2bits::__anon706 63 unsigned int exp :11; 67 unsigned int exp :11;
|
s_isfinite.c | 26 * $FreeBSD: src/lib/msun/src/s_isfinite.c,v 1.1 2004/07/09 03:32:39 das Exp $ 39 return (u.bits.exp != 2047); 48 return (u.bits.exp != 255); 57 return (u.bits.exp != 32767);
|
s_frexpl.c | 26 * $FreeBSD: src/lib/msun/src/s_frexpl.c,v 1.1 2005/03/07 04:54:51 das Exp $ 44 switch (u.bits.exp) { 50 *ex = u.bits.exp - 0x4200; 51 u.bits.exp = 0x3ffe; 57 *ex = u.bits.exp - 0x3ffe; 58 u.bits.exp = 0x3ffe;
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/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/av/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/av/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/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
UnwantedTokenException.pm | 18 my $exp; 20 $exp = ''; 23 $exp = ", expected " . $self->expecting; 27 return "UnwantedTokenException(found=" . $self->token->get_text() . "$exp)"; 30 return "UnwantedTokenException(found=undef$exp)";
|
/external/skia/src/core/ |
SkFloatBits.cpp | 13 do right before they return ... >> exp; 15 Round - adds 1 << (exp - 1) 16 Ceil - adds (1 << exp) - 1 46 int exp = unpack_exp(packed) - EXP_BIAS; local 49 if (exp >= 0) { 50 if (exp > 7) { // overflow 53 value <<= exp; local 56 exp = -exp; 57 if (exp > 25) { // underflo 60 value >>= exp; local 72 int exp = unpack_exp(packed) - EXP_BIAS; local 79 value <<= exp; local 102 int exp = unpack_exp(packed) - EXP_BIAS; local 109 value <<= exp; local 132 int exp = unpack_exp(packed) - EXP_BIAS; local 139 value <<= exp; local [all...] |
/frameworks/av/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/utils/lit/lit/ExampleTests/LLVM.InTree/test/Bar/ |
dg.exp | 1 load_lib llvm.exp
|
/external/llvm/utils/lit/lit/ExampleTests/LLVM.OutOfTree/src/test/Foo/ |
dg.exp | 1 load_lib llvm.exp
|
/external/webkit/Source/JavaScriptCore/os-win32/ |
stdbool.h | 36 #define CASSERT(exp, name) typedef int dummy##name [(exp) ? 1 : -1];
|
/external/apache-xml/src/main/java/org/apache/xpath/ |
ExpressionOwner.java | 39 * @param exp the raw Expression object, which should not normally be null. 41 public void setExpression(Expression exp);
|
/libcore/luni/src/main/java/java/math/ |
Multiplication.java | 101 * @param exp a positive {@code long} exponent 102 * @return {@code val * 10<sup>exp</sup>} 104 static BigInteger multiplyByTenPow(BigInteger val, long exp) { 105 // PRE: exp >= 0 106 return ((exp < tenPows.length) 107 ? multiplyByPositiveInt(val, tenPows[(int)exp]) 108 : val.multiply(powerOf10(exp))); 115 * @param exp the exponent of power of ten, it must be positive. 116 * @return a {@code BigInteger} with value {@code 10<sup>exp</sup>}. 118 static BigInteger powerOf10(long exp) { [all...] |