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

1234567891011>>

/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/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/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/libcxx/test/std/atomics/atomics.general/
H A Dreplace_failure_order.pass.cpp30 int exp = 0; local
32 i.compare_exchange_weak(exp, 0, std::memory_order_acq_rel);
33 i.compare_exchange_weak(exp, 0, std::memory_order_release);
34 i.compare_exchange_strong(exp, 0, std::memory_order_acq_rel);
35 i.compare_exchange_strong(exp, 0, std::memory_order_release);
37 v.compare_exchange_weak(exp, 0, std::memory_order_acq_rel);
38 v.compare_exchange_weak(exp, 0, std::memory_order_release);
39 v.compare_exchange_strong(exp, 0, std::memory_order_acq_rel);
40 v.compare_exchange_strong(exp, 0, std::memory_order_release);
/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/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...]
H A Dplural.c54 #include "plural-exp.h"
70 struct expression *exp; member in union:__anon3837
228 "start", "exp", 0
1008 if (yyvsp[0].exp == NULL)
1010 ((struct parse_args *) arg)->res = yyvsp[0].exp;
1016 yyval.exp = new_exp_3 (qmop, yyvsp[-4].exp, yyvsp[-2].exp, yyvsp[0].exp);
1022 yyval.exp
1318 FREE_EXPRESSION(struct expression *exp) argument
1346 const char *exp = *pexp; local
[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/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/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/v8/test/mjsunit/lithium/
H A DMathExp.js31 return Math.exp(x);
/external/conscrypt/src/compat/native/
H A DNetFd.h58 #define NET_FAILURE_RETRY(fd, exp) ({ \
59 typeof (exp) _rc; \
61 _rc = (exp); \
/external/libcxx/test/support/
H A Dhexfloat.h27 hexfloat(long long m1, unsigned long long m0, int exp) argument
32 std::__clz(m0)/4*4)), exp);
/external/selinux/libsepol/tests/
H A Ddebug.h27 extern void display_expr(policydb_t * p, cond_expr_t * exp, FILE * fp);
/external/libgsm/src/
H A Drpe.c228 word exp, mant; local
233 exp = 0;
234 if (xmaxc > 15) exp = SASR(xmaxc, 3) - 1;
235 mant = xmaxc - (exp << 3);
238 exp = -4;
244 exp--;
249 assert( exp >= -4 && exp <= 6 );
252 *exp_out = exp;
268 word exp, man local
349 APCM_inverse_quantization(xMc,mant,exp,xMp), register word * xMc, word mant, word exp, register word * xMp argument
460 word mant, exp; local
481 word exp, mant; local
[all...]
/external/libcxx/test/std/numerics/rand/rand.dis/rand.dist.norm/rand.dist.norm.lognormal/
H A Deval.pass.cpp65 double x_mean = std::exp(d.m() + sqr(d.s())/2);
66 double x_var = (std::exp(sqr(d.s())) - 1) * std::exp(2*d.m() + sqr(d.s()));
67 double x_skew = (std::exp(sqr(d.s())) + 2) *
68 std::sqrt((std::exp(sqr(d.s())) - 1));
69 double x_kurtosis = std::exp(4*sqr(d.s())) + 2*std::exp(3*sqr(d.s())) +
70 3*std::exp(2*sqr(d.s())) - 6;
107 double x_mean = std::exp(d.m() + sqr(d.s())/2);
108 double x_var = (std::exp(sq
[all...]
H A Deval_param.pass.cpp67 double x_mean = std::exp(p.m() + sqr(p.s())/2);
68 double x_var = (std::exp(sqr(p.s())) - 1) * std::exp(2*p.m() + sqr(p.s()));
69 double x_skew = (std::exp(sqr(p.s())) + 2) *
70 std::sqrt((std::exp(sqr(p.s())) - 1));
71 double x_kurtosis = std::exp(4*sqr(p.s())) + 2*std::exp(3*sqr(p.s())) +
72 3*std::exp(2*sqr(p.s())) - 6;
110 double x_mean = std::exp(p.m() + sqr(p.s())/2);
111 double x_var = (std::exp(sq
[all...]

Completed in 1324 milliseconds

1234567891011>>