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

1234567891011>>

/external/eigen/unsupported/test/mpreal/
H A Dmpreal.cpp453 mp_exp_t exp;
469 s = mpfr_get_str(NULL,&exp,b,0,mp,mode);
470 ns = mpfr_get_str(NULL,&exp,b,n,mp,mode);
487 if (exp>0 && static_cast<size_t>(exp)<slen)
493 while (*ptr=='0' && ptr>s+exp) ptr--;
495 if(ptr==s+exp) out = string(s,exp+1);
496 else out = string(s,exp+1)+'.'+string(s+exp
[all...]
/external/libppp/src/
H A Dtimer.c192 struct pppTimer *tp, *exp, *next; local
208 exp = NULL;
212 tp->enext = exp;
213 exp = tp;
224 while (exp) {
225 ExpiredList = exp->enext;
226 exp->enext = NULL;
227 if (exp->func)
228 (*exp->func)(exp
[all...]
/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
223 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
223 int exp = get_unsigned_exp(packed); local
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dnumfmtst.h184 const UnicodeString& exp, UBool rt=TRUE);
187 const char *exp, UBool rt=TRUE) {
188 expect(fmt, n, UnicodeString(exp, ""), rt);
192 const UnicodeString& exp, UErrorCode);
195 const char *exp, UErrorCode errorCode) {
196 expect(fmt, n, UnicodeString(exp, ""), errorCode);
218 void expectPat(DecimalFormat& fmt, const UnicodeString& exp);
220 void expectPat(DecimalFormat& fmt, const char *exp) { argument
221 expectPat(fmt, UnicodeString(exp, ""));
235 const UnicodeString& exp, UBoo
186 expect(NumberFormat& fmt, const Formattable& n, const char *exp, UBool rt=TRUE) argument
194 expect(NumberFormat* fmt, const Formattable& n, const char *exp, UErrorCode errorCode) argument
[all...]
/external/icu4c/test/intltest/
H A Dnumfmtst.h196 const UnicodeString& exp, UBool rt=TRUE);
199 const char *exp, UBool rt=TRUE) {
200 expect(fmt, n, UnicodeString(exp, ""), rt);
204 const UnicodeString& exp, UErrorCode);
207 const char *exp, UErrorCode errorCode) {
208 expect(fmt, n, UnicodeString(exp, ""), errorCode);
230 void expectPat(DecimalFormat& fmt, const UnicodeString& exp);
232 void expectPat(DecimalFormat& fmt, const char *exp) { argument
233 expectPat(fmt, UnicodeString(exp, ""));
247 const UnicodeString& exp, UBoo
198 expect(NumberFormat& fmt, const Formattable& n, const char *exp, UBool rt=TRUE) argument
206 expect(NumberFormat* fmt, const Formattable& n, const char *exp, UErrorCode errorCode) argument
[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/WebKit/Source/core/css/
H A DMediaQuery.cpp91 MediaQueryExp* exp = m_expressions->at(i).get(); local
93 if (key && *exp == *key)
96 key = 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...]
/external/chromium_org/third_party/simplejson/
H A Dscanner.py54 integer, frac, exp = m.groups()
55 if frac or exp:
56 res = parse_float(integer + (frac or '') + (exp or ''))
/external/libvorbis/lib/
H A Dscales.h68 #define fromdB(x) (exp((x)*.11512925f))
82 #define fromMEL(m) (1000.f*exp((m)/1442.695f)-1000.f)
88 #define fromOC(o) (exp(((o)+5.965784f)*.693147f))
/external/stlport/stlport/stl/config/
H A D_como.h91 inline long double expl(long double arg) { return exp(arg); }
125 # define expf exp
126 inline long double expl(long double arg) { return exp(arg); }
164 inline long double expl(long double arg) { return exp(arg); }
/external/chromium_org/v8/src/
H A Dchecks.h185 volatile double* exp = new double[1]; local
186 *exp = expected;
189 if (*exp != *val) {
192 expected_source, value_source, *exp, *val);
194 delete[] exp;
220 volatile double* exp = new double[1]; local
221 *exp = expected;
224 if (*exp == *val) {
229 delete[] exp;
/external/eigen/unsupported/test/
H A Dmatrix_function.cpp105 VERIFY_IS_APPROX(A.exp(), A.matrixFunction(StdStemFunctions<ComplexScalar>::exp));
122 // identity X.exp().log() = X only holds if Im(lambda) < pi for all eigenvalues of X
123 MatrixType expA = scaledA.exp();
133 VERIFY_IS_APPROX_ABS(A.sinh(), (A.exp() - (-A).exp()) / 2);
134 VERIFY_IS_APPROX_ABS(A.cosh(), (A.exp() + (-A).exp()) / 2);
151 ComplexMatrix exp_iA = (imagUnit * Ac).exp();
152 ComplexMatrix exp_miA = (-imagUnit * Ac).exp();
[all...]
/external/v8/src/
H A Dchecks.h184 volatile double* exp = new double[1]; local
185 *exp = expected;
188 if (*exp != *val) {
191 expected_source, value_source, *exp, *val);
193 delete[] exp;
205 volatile double* exp = new double[1]; local
206 *exp = expected;
209 if (*exp == *val) {
214 delete[] exp;
/external/stlport/src/
H A Dnum_get_float.cpp149 void _Stl_set_exponent(uint64 &val, uint64 exp) argument
150 { val = (val & ~exponent_mask) | ((exp & bit11) << 52); }
265 // Convert a 64-bitb fraction * 10^exp to a 64-bit fraction * 2^bexp.
267 // exp: base-10 exponent
269 static void _Stl_tenscale(uint64& p, int exp, int& bexp) { argument
272 if ( exp == 0 ) { /* no scaling needed */
276 int exp_hi = 0, exp_lo = exp; /* exp = exp_hi*32 + exp_lo */
280 if (exp > 0) { /* split exponent */
290 } else { // exp <
651 int exp; local
756 int exp; local
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Ddiv-mod.js48 var exp;
53 for (exp = -1024; exp <= 1024; exp += 8) {
54 divmod(div_func, mod_func, Math.pow(2, exp), divisor);
55 divmod(div_func, mod_func, 0.9999999 * Math.pow(2, exp), divisor);
56 divmod(div_func, mod_func, 1.0000001 * Math.pow(2, exp), divisor);
59 for (exp = 0; exp <= 32; exp
[all...]
/external/v8/test/mjsunit/
H A Ddiv-mod.js48 var exp;
53 for (exp = -1024; exp <= 1024; exp += 8) {
54 divmod(div_func, mod_func, Math.pow(2, exp), divisor);
55 divmod(div_func, mod_func, 0.9999999 * Math.pow(2, exp), divisor);
56 divmod(div_func, mod_func, 1.0000001 * Math.pow(2, exp), divisor);
59 for (exp = 0; exp <= 32; exp
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dradeon_fog.c68 result = exp(-narg); \
74 * Initialize the exp_table[] lookup table for approximating exp().
82 exp_table[i] = (GLfloat) exp(-f);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
H A Dradeon_fog.c68 result = exp(-narg); \
74 * Initialize the exp_table[] lookup table for approximating exp().
82 exp_table[i] = (GLfloat) exp(-f);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1246.js33 var nonSmi10 = Math.log(Math.exp(10));
34 var nonSmi16 = Math.log(Math.exp(16));
/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/ipsec-tools/src/racoon/
H A Dvar.h42 #define ISSET(exp, bit) (((exp) & (bit)) == (bit))
/external/libffi/testsuite/libffi.call/
H A Dcall.exp17 # libffi testsuite that uses the 'dg.exp' driver.
19 load_lib libffi-dg.exp

Completed in 821 milliseconds

1234567891011>>