/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/chromium_org/third_party/icu/source/common/ |
uassert.h | 25 #define U_ASSERT(exp) 28 #define U_ASSERT(exp) assert(exp)
|
/external/icu4c/common/ |
uassert.h | 26 # define U_ASSERT(exp) assert(exp) 28 # define U_ASSERT(exp)
|
/external/bison/doc/figs/ |
example.y | 2 exp: a ";" | b "."; label
|
/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/upstream-freebsd/lib/msun/src/ |
s_isnormal.c | 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);
|
s_isfinite.c | 39 return (u.bits.exp != 2047); 48 return (u.bits.exp != 255); 57 return (u.bits.exp != 32767);
|
/external/eigen/doc/snippets/ |
Cwise_exp.cpp | 2 cout << v.exp() << endl;
|
/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/chromium_org/third_party/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...] |
/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...] |
/external/bison/lib/ |
ldexpl.c | 29 ldexpl (long double x, int exp) 31 return ldexp (x, exp); 40 ldexpl (long double x, int exp) 51 if (exp < 0) 53 exp = -exp; 59 if (exp > 0) 63 and bit <= exp. */ 64 if (exp & bit) 67 if (bit > exp) [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/chromium_org/third_party/WebKit/Source/wtf/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);
|