Searched refs:exp (Results 1 - 25 of 596) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/experimental/AndroidPathRenderer/cutils/
H A Dcompiler.h16 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), true ))
17 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), false ))
19 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), 1 ))
20 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), 0 ))
/external/ltrace/testsuite/config/
H A Dunix.exp1 load_lib ltrace.exp
/external/skia/experimental/AndroidPathRenderer/cutils/
H A Dcompiler.h16 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), true ))
17 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), false ))
19 # define CC_LIKELY( exp ) (__builtin_expect( !!(exp), 1 ))
20 # define CC_UNLIKELY( exp ) (__builtin_expect( !!(exp), 0 ))
/external/chromium_org/third_party/icu/source/common/
H A Duassert.h26 # define U_ASSERT(exp) assert(exp)
28 # define U_ASSERT(exp)
/external/icu/icu4c/source/common/
H A Duassert.h26 # define U_ASSERT(exp) assert(exp)
28 # define U_ASSERT(exp)
/external/bison/doc/figs/
H A Dexample.y2 exp: a ";" | b "."; label
/external/srec/portable/include/
H A Dpassert.h45 #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__); \
/external/chromium_org/third_party/skia/src/core/
H A DSkFloatBits.cpp13 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 > 2
60 value >>= exp; local
72 int exp = unpack_exp(packed) - EXP_BIAS; local
79 value <<= exp; local
111 int exp = unpack_exp(packed) - EXP_BIAS; local
118 value <<= exp; local
141 int exp = unpack_exp(packed) - EXP_BIAS; local
148 value <<= exp; local
[all...]
/external/compiler-rt/test/asan/TestCases/
H A Dfrexp_interceptor.cc10 int *exp = (int*)malloc(sizeof(int)); local
11 free(exp);
12 double y = frexp(x, exp);
/external/eigen/doc/snippets/
H A DCwise_exp.cpp2 cout << v.exp() << endl;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DUnwantedTokenException.java44 String exp = ", expected "+expecting;
46 exp = "";
49 return "UnwantedTokenException(found="+null+exp+")";
51 return "UnwantedTokenException(found="+token.getText()+exp+")";
/external/fdlibm/
H A Ds_ldexp.c18 double ieee_ldexp(double value, int exp) argument
20 double ieee_ldexp(value, exp)
21 double value; int exp;
25 value = ieee_scalbn(value,exp);
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_flog.c66 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;
/external/skia/src/core/
H A DSkFloatBits.cpp13 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 > 2
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/
H A Dldexpl.c29 ldexpl (long double x, int exp) argument
31 return ldexp (x, exp);
40 ldexpl (long double x, int exp) argument
51 if (exp < 0)
53 exp = -exp;
59 if (exp > 0)
63 and bit <= exp. */
64 if (exp & bit)
67 if (bit > exp)
[all...]
/external/e2fsprogs/intl/
H A Dplural.y35 #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/apache-xml/src/main/java/org/apache/xpath/
H A DExpressionOwner.java39 * @param exp the raw Expression object, which should not normally be null.
41 public void setExpression(Expression exp); argument
/external/chromium_org/tools/traceline/traceline/
H A Dlogging.h11 #define CHECK(exp, ...) \
12 if (!(exp)) { \
13 printf("FAILED CHECK: %s\n %s:%d\n", #exp, __FILE__, __LINE__); \
/external/chromium_org/v8/test/mjsunit/
H A Dmath-exp-precision.js28 // Tests that the --fast-math implementation of Math.exp() has
31 function exp(x) { function
32 return Math.exp(x);
35 var first_call_result = exp(Math.PI);
36 var second_call_result = exp(Math.PI);
52 var ex = exp(x);
62 var last_call_result = exp(Math.PI);
/external/chromium_org/v8/src/
H A Dchecks.cc17 static bool CheckEqualsStrict(volatile double* exp, volatile double* val) { argument
18 v8::internal::DoubleRepresentation exp_rep(*exp);
29 volatile double* exp = new double[1]; local
30 *exp = expected;
33 if (!CheckEqualsStrict(exp, val)) {
36 expected_source, value_source, *exp, *val);
38 delete[] exp;
47 volatile double* exp = new double[1]; local
48 *exp = expected;
51 if (CheckEqualsStrict(exp, va
[all...]
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DUnwantedTokenException.js16 var exp = ", expected "+this.expecting;
18 exp = "";
21 return "UnwantedTokenException(found="+exp+")";
23 return "UnwantedTokenException(found="+this.token.getText()+exp+")";
/external/chromium_org/v8/test/mjsunit/lithium/
H A DMathExp.js31 return Math.exp(x);
/external/chromium_org/third_party/webrtc/base/
H A Dexp_filter.cc24 float ExpFilter::Apply(float exp, float sample) { argument
28 } else if (exp == 1.0) {
31 float alpha = pow(alpha_, exp);
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dnetwork_predictor_unittest.cc37 float exp = pow(0.9999f, 1000); local
38 float value = 32.0f * exp + (1 - exp) * 40.0f;
/external/conscrypt/src/compat/native/
H A DNetFd.h58 #define NET_FAILURE_RETRY(fd, exp) ({ \
59 typeof (exp) _rc; \
61 _rc = (exp); \

Completed in 3587 milliseconds

1234567891011>>