/external/eigen/Eigen/src/Core/ |
GenericPacketMath.h | 244 /** \internal \returns the exp of \a a (coeff-wise) */ 246 Packet pexp(const Packet& a) { return exp(a); }
|
/external/eigen/test/ |
cwiseop.cpp | 110 VERIFY_IS_APPROX(m1.cwise().abs().cwise().log().cwise().exp() , m1.cwise().abs());
|
/external/eigen/test/eigen2/ |
eigen2_cwiseop.cpp | 103 VERIFY_IS_APPROX(m1.cwise().abs().cwise().log().cwise().exp() , m1.cwise().abs());
|
/external/eigen/unsupported/test/ |
FFTW.cpp | 41 acc += promote( timebuf[k1] ) * exp( complex<long double>(0,k1*phinc) );
|
/external/llvm/include/llvm/Target/ |
TargetLibraryInfo.h | 178 /// double exp(double x); 179 exp, enumerator in enum:llvm::LibFunc::Func 262 /// double frexp(double num, int *exp); 264 /// float frexpf(float num, int *exp); 266 /// long double frexpl(long double num, int *exp);
|
/external/speex/libspeex/ |
stereo.c | 288 stereo->balance = exp(sign*.25*dexp);
|
/external/srec/srec/ca/ |
pat_basi.c | 38 "$Id: pat_basi.c,v 1.9.6.11 2008/03/07 18:49:28 dahan Exp $"; 154 (prdata)(WEIGHT_SCALE * exp((double)(0x01 << WT_ADJUST) *
|
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/ |
encode_lpc_swb.c | 705 lpcGains[coeffCntr] = exp(lpcGains[coeffCntr] + WebRtcIsac_kMeanLpcGain);
|
/libcore/benchmarks/src/benchmarks/regression/ |
MathBenchmark.java | 131 Math.exp(d);
|
StrictMathBenchmark.java | 119 StrictMath.exp(d);
|
/libcore/luni/src/main/java/java/lang/ |
StrictMath.java | 272 * <li>{@code exp(+infinity) = +infinity}</li> 273 * <li>{@code exp(-infinity) = +0.0}</li> 274 * <li>{@code exp(NaN) = NaN}</li> 281 public static native double exp(double d); method in class:StrictMath 286 * much more accurate to use {@code expm1(d)+1} than {@code exp(d)} (due to [all...] |
/libcore/luni/src/main/java/java/math/ |
BigInt.java | 290 static BigInt exp(BigInt a, int p) { method in class:BigInt
|
/prebuilts/misc/common/commons-cli/ |
commons-cli-1.2.jar | |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_inspect.py | 51 def istest(self, predicate, exp): 52 obj = eval(exp) 53 self.assertTrue(predicate(obj), '%s(%s)' % (predicate.__name__, exp)) 59 self.assertFalse(other(obj), 'not %s(%s)' % (other.__name__, exp)) [all...] |
test_long.py | 776 for exp in range(10) + [100, 1000, 10000]: 777 value = 10 ** exp 779 self.assertAlmostEqual(log10, exp) 781 # log10(value) == exp, so log(value) == log10(value)/log10(e) == 782 # exp/LOG10E 783 expected = exp / LOG10E [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_inspect.py | 51 def istest(self, predicate, exp): 52 obj = eval(exp) 53 self.assertTrue(predicate(obj), '%s(%s)' % (predicate.__name__, exp)) 59 self.assertFalse(other(obj), 'not %s(%s)' % (other.__name__, exp)) [all...] |
test_long.py | 776 for exp in range(10) + [100, 1000, 10000]: 777 value = 10 ** exp 779 self.assertAlmostEqual(log10, exp) 781 # log10(value) == exp, so log(value) == log10(value)/log10(e) == 782 # exp/LOG10E 783 expected = exp / LOG10E [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSCalculationValue.cpp | 475 virtual bool equals(const CSSCalcExpressionNode& exp) const 477 if (type() != exp.type()) 480 const CSSCalcBinaryOperation& other = static_cast<const CSSCalcBinaryOperation&>(exp);
|
/external/chromium_org/third_party/icu/source/test/cintltst/ |
cdtrgtst.c | 130 UDate start,exp,got; local 179 exp = d[i]; 182 expdate=myFormatit(def, exp);
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
msfmrgts.cpp | 161 UnicodeString exp("{0,choice,0#no files|1#one file|1< {0,number,integer} files}"); 162 if (pat != exp) { 164 errln("Exp: " + exp); [all...] |
/external/eigen/unsupported/Eigen/src/AutoDiff/ |
AutoDiffScalar.h | 49 * - std::abs, std::sqrt, std::pow, std::exp, std::log, std::sin, std::cos, 50 * - internal::abs, internal::sqrt, internal::pow, internal::exp, internal::log, internal::sin, internal::cos, 560 EIGEN_AUTODIFF_DECLARE_GLOBAL_UNARY(exp, 561 using std::exp; 562 Scalar expx = exp(x.value());
|
/external/icu4c/test/cintltst/ |
cdtrgtst.c | 130 UDate start,exp,got; local 179 exp = d[i]; 182 expdate=myFormatit(def, exp);
|
/external/kernel-headers/original/linux/ |
sched.h | 110 #define EXP_1 1884 /* 1/exp(5sec/1min) as fixed-point */ 111 #define EXP_5 2014 /* 1/exp(5sec/5min) */ 112 #define EXP_15 2037 /* 1/exp(5sec/15min) */ 114 #define CALC_LOAD(load,exp,n) \ 115 load *= exp; \ 116 load += n*(FIXED_1-exp); \ [all...] |
/external/openfst/src/include/fst/ |
randgen.h | 83 sum += exp(-to_log_weight_(arc.weight).Value()); 85 sum += exp(-to_log_weight_(fst.Final(s)).Value()); 93 p += exp(-to_log_weight_(arc.weight).Value());
|
/external/stlport/stlport/stl/ |
_complex.h | 868 _STLP_DECLSPEC complex<float> _STLP_CALL exp(const complex<float>&); 887 _STLP_DECLSPEC complex<double> _STLP_CALL exp(const complex<double>&); 906 _STLP_DECLSPEC complex<long double> _STLP_CALL exp(const complex<long double>&);
|