Searched refs:exp (Results 51 - 75 of 596) sorted by relevance

1234567891011>>

/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DOperation.java160 public void setExpression(Expression exp) argument
162 exp.exprSetParent(Operation.this);
163 m_left = exp;
190 public void setExpression(Expression exp) argument
192 exp.exprSetParent(this);
193 m_right = exp;
H A DUnaryOperation.java142 public void setExpression(Expression exp) argument
144 exp.exprSetParent(this);
145 m_right = exp;
/external/chromium_org/third_party/sqlite/src/src/
H A Dprintf.c257 int exp, e2; /* exponent of real numbers */ local
490 exp = 0;
497 while( realvalue>=1e32 && exp<=350 ){ realvalue *= 1e-32; exp+=32; }
498 while( realvalue>=1e8 && exp<=350 ){ realvalue *= 1e-8; exp+=8; }
499 while( realvalue>=10.0 && exp<=350 ){ realvalue *= 0.1; exp++; }
500 while( realvalue<1e-8 ){ realvalue *= 1e8; exp-=8; }
501 while( realvalue<1.0 ){ realvalue *= 10.0; exp
[all...]
/external/clang/bindings/python/tests/cindex/
H A Dtest_cdb.py53 for arg, exp in zip(cmds[i].arguments, expected[i]['line']):
54 assert arg == exp
64 for arg, exp in zip(cmds[0].arguments, expected):
65 assert arg == exp
82 for arg, exp in zip(cmds[i].arguments, expected[i]['line']):
83 assert arg == exp
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFuncExtFunction.java255 ArgExtOwner(Expression exp) argument
257 m_exp = exp;
272 public void setExpression(Expression exp) argument
274 exp.exprSetParent(FuncExtFunction.this);
275 m_exp = exp;
287 Expression exp = (Expression)m_argVec.elementAt(i);
288 exp.callVisitors(new ArgExtOwner(exp), visitor);
H A DFunction2Args.java144 public void setExpression(Expression exp) argument
146 exp.exprSetParent(Function2Args.this);
147 m_arg1 = exp;
H A DFunction3Args.java142 public void setExpression(Expression exp) argument
144 exp.exprSetParent(Function3Args.this);
145 m_arg2 = exp;
H A DFunctionOneArg.java145 public void setExpression(Expression exp) argument
147 exp.exprSetParent(this);
148 m_arg0 = exp;
/external/chromium_org/v8/test/mjsunit/es6/
H A Dmath-fround.js106 function fuzz_mantissa(sign, exp, m1inc, m2inc) {
109 var float = new ieee754float(sign, exp, m1, m2);
117 for (var exp = 1024 - 170; exp < 1024 + 170; exp++) {
118 fuzz_mantissa(sign, exp, 1337 * exp - sign, 127913 * exp - sign);
H A Dmath-expm1.js18 // Math.expm1(x) stays reasonably close to Math.exp(x) - 1 for large values.
20 var expected = Math.exp(x) - 1;
22 expected = Math.exp(-x) - 1;
27 // Use six terms of Taylor expansion at 0 for exp(x) as test expectation:
28 // exp(x) - 1 == exp(0) + exp(0) * x + x * x / 2 + ... - 1
50 assertEquals(Infinity, Math.exp(1.7976931348623157e308));
/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/WebKit/Source/platform/audio/
H A DAudioUtilities.cpp56 return 1 - exp(-1 / (sampleRate * timeConstant));
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtsputil.h25 // void remainderTest(double x, double y, double exp);
26 void maxMinTest(double a, double b, double exp, UBool max);
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/eigen/bench/btl/generic_bench/utils/
H A Dsize_log.hh46 size=int(exp(ls));
/external/icu/icu4c/source/test/intltest/
H A Dtsputil.h25 // void remainderTest(double x, double y, double exp);
26 void maxMinTest(double a, double b, double exp, UBool max);
/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/elfutils/0.153/host-darwin-fixup/
H A DAndroidFixup.h31 #define TEMP_FAILURE_RETRY(exp) ({ \
32 typeof (exp) _rc; \
34 _rc = (exp); \
/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/chromium_org/remoting/protocol/
H A Djingle_messages_unittest.cc28 bool VerifyXml(const XmlElement* exp, argument
31 if (exp->Name() != val->Name()) {
32 *error = "<" + exp->Name().Merged() + ">" + " is expected, but " +
36 if (exp->BodyText() != val->BodyText()) {
37 *error = "<" + exp->Name().LocalPart() + ">" + exp->BodyText() +
38 "</" + exp->Name().LocalPart() + ">" " is expected, but found " +
39 "<" + exp->Name().LocalPart() + ">" + val->BodyText() +
40 "</" + exp->Name().LocalPart() + ">";
44 for (const XmlAttr* exp_attr = exp
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkFloat.cpp37 int exp = get_unsigned_exp(packed) - EXP_BIAS - shift; local
40 if (exp >= 0)
42 if (exp > 8) // overflow
45 value <<= exp; local
49 exp = -exp;
50 if (exp > 23) // underflow
53 value >>= exp; local
135 int exp; local
142 exp
217 int exp = get_unsigned_exp(packed); local
[all...]
/external/skia/src/core/
H A DSkFloat.cpp37 int exp = get_unsigned_exp(packed) - EXP_BIAS - shift; local
40 if (exp >= 0)
42 if (exp > 8) // overflow
45 value <<= exp; local
49 exp = -exp;
50 if (exp > 23) // underflow
53 value >>= exp; local
135 int exp; local
142 exp
217 int exp = get_unsigned_exp(packed); local
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DFilterExprIterator.java177 public void setExpression(Expression exp) argument
179 exp.exprSetParent(FilterExprIterator.this);
180 m_expr = exp;
/external/chromium_org/third_party/libxml/src/
H A Dregressions.py38 exp = expected.readlines()
50 for i in range(len(exp)):
51 j = string.find(exp[i],base2)
52 if (j == 0) or ((j == 2) and (exp[i][0:2] == './')):
53 col = string.find(exp[i],':')
55 start = string.rfind(exp[i][:col], '/')
57 exp[i] = exp[i][start+1:]
64 # diff = difflib.ndiff(res, exp)
75 el = len(exp)
[all...]

Completed in 467 milliseconds

1234567891011>>