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

1234567891011>>

/external/ltrace/testsuite/config/
H A Dunix.exp1 load_lib ltrace.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/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:__anon4921
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/test/mjsunit/wasm/
H A Dstack.js18 expected.forEach(function(exp, i) {
19 assertEquals(exp[1], frames[i].getFunctionName(),
21 assertEquals(exp[2], frames[i].getLineNumber(), "["+i+"].getLineNumber()");
22 if (exp[0])
23 assertEquals(exp[3], frames[i].getPosition(),
25 assertContains(exp[4], frames[i].getFileName(), "["+i+"].getFileName()");
27 if (exp[0]) {
28 toString = exp[1] + " (<WASM>[" + exp[2] + "]+" + exp[
[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/v8/build/config/ios/
H A Dfind_signing_identity.py24 exp = re.compile('[0-9]+\) ([A-F0-9]+) "([^"]*)"')
26 res = exp.match(line)
/external/opencv3/modules/features2d/src/kaze/
H A Dutils.h83 inline int fastpow(int base, int exp) { argument
85 while(exp > 0) {
86 if(exp & 1) {
87 exp--;
90 exp /= 2;
/external/conscrypt/src/compat/native/
H A DNetFd.h58 #define NET_FAILURE_RETRY(fd, exp) ({ \
59 typeof (exp) _rc; \
61 _rc = (exp); \
/external/conscrypt/src/openjdk/native/
H A DNetFd.h58 #define NET_FAILURE_RETRY(fd, exp) ({ \
59 typeof (exp) _rc; \
61 _rc = (exp); \
/external/webrtc/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/webrtc/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/testng/src/test/java/test/tmp/
H A DExponentTest.java16 new Object[] { 0.0, Math.exp(0) },
17 new Object[] { 1.0, Math.exp(1) },
18 new Object[] { 2.0, Math.exp(2) },
38 return Math.exp(exponent);

Completed in 3845 milliseconds

1234567891011>>