/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/third_party/icu/source/common/ |
uassert.h | 25 #define U_ASSERT(exp) 28 #define U_ASSERT(exp) assert(exp)
|
/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::__anon560 42 unsigned int exp :8; 57 unsigned int exp :11; member in struct:IEEEd2bits::__anon561 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/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...] |
log2.c | 40 * PURPOSE: Computes log2(L_x, exp), where L_x is positive and
41 * normalized, and exp is the normalisation exponent
58 Word16 exp, /* (i) : norm_l (L_x) */
71 *exponent = (30 - exp);
104 Word16 exp;
local 106 exp = norm_l(L_x);
107 Log2_norm ((L_x << exp), exp, exponent, fraction);
|
/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/webkit/JavaScriptCore/os-win32/ |
stdbool.h | 36 #define CASSERT(exp, name) typedef int dummy##name [(exp) ? 1 : -1];
|
/libcore/luni/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);
|
/frameworks/base/media/libstagefright/codecs/aacdec/ |
mix_radix_fft.cpp | 34 (3) Eliminated hardly used condition (exp = 0). 48 by exp(j(2pi/N)(k+1/8)) 203 Int exp; local 216 exp = 8 - pv_normalize(max1); /* use 24 bits for mix radix fft */ 218 if (exp < 4) 220 exp = 4; 230 diff1 = (temp1 - temp2) >> exp; 231 *pData_3++ = (temp1 + temp2) >> exp; 237 *pData_3++ = (temp3 + temp4) >> exp; 238 *pData_4 = (temp3 - temp4) >> exp; [all...] |
/libcore/luni/src/main/java/java/math/ |
Multiplication.java | 102 * @param exp a positive {@code long} exponent 103 * @return {@code val * 10<sup>exp</sup>} 105 static BigInteger multiplyByTenPow(BigInteger val, long exp) { 106 // PRE: exp >= 0 107 return ((exp < tenPows.length) 108 ? multiplyByPositiveInt(val, tenPows[(int)exp]) 109 : val.multiply(powerOf10(exp))); 116 * @param exp the exponent of power of ten, it must be positive. 117 * @return a {@code BigInteger} with value {@code 10<sup>exp</sup>}. 119 static BigInteger powerOf10(long exp) { [all...] |
/external/kernel-headers/original/linux/nfsd/ |
export.h | 74 #define EX_SECURE(exp) (!((exp)->ex_flags & NFSEXP_INSECURE_PORT)) 75 #define EX_ISSYNC(exp) (!((exp)->ex_flags & NFSEXP_ASYNC)) 76 #define EX_RDONLY(exp) ((exp)->ex_flags & NFSEXP_READONLY) 77 #define EX_NOHIDE(exp) ((exp)->ex_flags & NFSEXP_NOHIDE) 78 #define EX_WGATHER(exp) ((exp)->ex_flags & NFSEXP_GATHERED_WRITES [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Math/ |
15.8.2.8.js | 24 ECMA Section: 15.8.2.8 Math.exp(x) 41 var TITLE = "Math.exp(x)"; 52 array[item++] = new TestCase( SECTION, "Math.exp.length", 1, Math.exp.length ); 54 array[item++] = new TestCase( SECTION, "Math.exp()", Number.NaN, Math.exp() ); 55 array[item++] = new TestCase( SECTION, "Math.exp(null)", 1, Math.exp(null) ); 56 array[item++] = new TestCase( SECTION, "Math.exp(void 0)", Number.NaN, Math.exp(void 0) ) [all...] |