Searched defs:exp (Results 1 - 25 of 218) sorted by relevance

123456789

/external/bison/doc/figs/
H A Dexample.y2 exp: a ";" | b "."; label
/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/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/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/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/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/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/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/bison/etc/
H A Dbench.pl.in50 %type <val> exp input
61 exp { if (\$1 != 0) abort (); \$\$ = \$1; }
62 | input exp { if (\$2 != \$1 + 1) abort (); \$\$ = \$2; }
65 exp: label
175 %type <ival> exp
192 | exp '\\n' { USE (\$1); }
195 exp: label
197 | exp '=' exp
203 | exp '
[all...]
/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/libsepol/tests/
H A Ddebug.c37 void display_expr(policydb_t * p, cond_expr_t * exp, FILE * fp) argument
41 for (cur = exp; cur != NULL; cur = cur->next) {
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcposxtst.c74 UChar exp[128]; local
80 u_uastrcpy(exp, DATA[i+2]);
90 if (u_strcmp(ustr, exp) != 0) {
91 log_err("FAIL: u_catgets => \"%s\", exp. \"%s\"\n",
96 log_err("FAIL: u_catgets => len=%d, exp. %d\n",
101 log_err("FAIL: u_catgets => %s, exp. %s\n",
/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/deqp/framework/delibs/debase/
H A DdeInt32.c52 * \param exp Pointer to resulting exponent value.
56 * result = exp2(exp) * rcp / (1<<DE_RCP_FRAC_BITS).
58 void deRcp32 (deUint32 a, deUint32* rcp, int* exp) argument
154 *exp = 31 - shift;
H A DdeInt32Test.c73 int exp; local
108 deRcp32(val, &rcp, &exp);
111 DE_TEST_ASSERT(exp == numBits);
127 deRcp32(val, &rcp, &exp);
130 DE_TEST_ASSERT(exp == numBits);
/external/eigen/Eigen/src/plugins/
H A DArrayCwiseUnaryOps.h37 exp() const function
47 * \sa exp()
140 * \sa exp(), log()
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
H A DStemFunction.h24 static Scalar exp(Scalar x, int) function in class:Eigen::StdStemFunctions
26 return std::exp(x);
/external/fio/lib/
H A Dieee754.c15 long long sign, exp, significand; local
47 exp = shift + ((1 << (expbits - 1)) - 1); // shift + bias
50 return (sign << (bits - 1)) | (exp << (bits-expbits - 1)) | significand;
/external/icu/icu4c/source/test/cintltst/
H A Dcposxtst.c74 UChar exp[128]; local
80 u_uastrcpy(exp, DATA[i+2]);
90 if (u_strcmp(ustr, exp) != 0) {
91 log_err("FAIL: u_catgets => \"%s\", exp. \"%s\"\n",
96 log_err("FAIL: u_catgets => len=%d, exp. %d\n",
101 log_err("FAIL: u_catgets => %s, exp. %s\n",
/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/chromium_org/third_party/icu/source/test/intltest/
H A Dnumfmtst.h213 const UnicodeString& exp, UBool rt=TRUE);
216 const char *exp, UBool rt=TRUE) {
217 expect(fmt, n, UnicodeString(exp, ""), rt);
221 const UnicodeString& exp, UErrorCode);
224 const char *exp, UErrorCode errorCode) {
225 expect(fmt, n, UnicodeString(exp, ""), errorCode);
247 void expectPat(DecimalFormat& fmt, const UnicodeString& exp);
249 void expectPat(DecimalFormat& fmt, const char *exp) { argument
250 expectPat(fmt, UnicodeString(exp, ""));
264 const UnicodeString& exp, UBoo
215 expect(NumberFormat& fmt, const Formattable& n, const char *exp, UBool rt=TRUE) argument
223 expect(NumberFormat* fmt, const Formattable& n, const char *exp, UErrorCode errorCode) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/x86/
H A Dcommon_x86.c89 static LONG WINAPI ExceptionFilter(LPEXCEPTION_POINTERS exp) argument
91 PEXCEPTION_RECORD rec = exp->ExceptionRecord;
92 PCONTEXT ctx = exp->ContextRecord;
/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/icu/icu4c/source/test/intltest/
H A Dnumfmtst.h219 const UnicodeString& exp, UBool rt=TRUE);
222 const char *exp, UBool rt=TRUE) {
223 expect(fmt, n, UnicodeString(exp, ""), rt);
227 const UnicodeString& exp, UBool rt, UErrorCode errorCode);
230 const char *exp, UBool rt, UErrorCode errorCode) {
231 expect(fmt, n, UnicodeString(exp, ""), rt, errorCode);
235 const UnicodeString& exp, UErrorCode errorCode) {
236 expect(fmt, n, exp, TRUE, errorCode);
240 const char *exp, UErrorCode errorCode) {
241 expect(fmt, n, UnicodeString(exp, ""), TRU
221 expect(NumberFormat& fmt, const Formattable& n, const char *exp, UBool rt=TRUE) argument
229 expect(NumberFormat* fmt, const Formattable& n, const char *exp, UBool rt, UErrorCode errorCode) argument
234 expect(NumberFormat* fmt, const Formattable& n, const UnicodeString& exp, UErrorCode errorCode) argument
239 expect(NumberFormat* fmt, const Formattable& n, const char *exp, UErrorCode errorCode) argument
265 expectPat(DecimalFormat& fmt, const char *exp) argument
[all...]

Completed in 7949 milliseconds

123456789