| /external/stlport/src/ |
| D | complex.cpp | 311 _STLP_DECLSPEC complex<float> _STLP_CALL pow(const float& a, const complex<float>& b) in pow() function 314 _STLP_DECLSPEC complex<float> _STLP_CALL pow(const complex<float>& z_in, int n) in pow() function 317 _STLP_DECLSPEC complex<float> _STLP_CALL pow(const complex<float>& a, const float& b) in pow() function 320 _STLP_DECLSPEC complex<float> _STLP_CALL pow(const complex<float>& a, const complex<float>& b) in pow() function 323 _STLP_DECLSPEC complex<double> _STLP_CALL pow(const double& a, const complex<double>& b) in pow() function 326 _STLP_DECLSPEC complex<double> _STLP_CALL pow(const complex<double>& z_in, int n) in pow() function 329 _STLP_DECLSPEC complex<double> _STLP_CALL pow(const complex<double>& a, const double& b) in pow() function 332 _STLP_DECLSPEC complex<double> _STLP_CALL pow(const complex<double>& a, const complex<double>& b) in pow() function 336 _STLP_DECLSPEC complex<long double> _STLP_CALL pow(const long double& a, in pow() function 341 _STLP_DECLSPEC complex<long double> _STLP_CALL pow(const complex<long double>& z_in, int n) in pow() function [all …]
|
| /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/gcm/ |
| D | GCMExponentiator.java | 6 void exponentiateX(long pow, byte[] output); in exponentiateX()
|
| D | Tables1kGCMExponentiator.java | 25 public void exponentiateX(long pow, byte[] output) in exponentiateX()
|
| /external/eigen/Eigen/src/Core/ |
| D | GlobalFunctions.h | 61 pow(const Eigen::ArrayBase<Derived>& x, const Eigen::ArrayBase<Derived>& exponents) in pow() function
|
| /external/eigen/Eigen/src/plugins/ |
| D | ArrayCwiseUnaryOps.h | 143 pow(const Scalar& exponent) const in pow() function
|
| /external/ceres-solver/include/ceres/ |
| D | jet.h | 392 inline double pow (double x, double y) { return std::pow(x, y); } in pow() function 571 Jet<T, N> pow(const Jet<T, N>& f, double g) { in pow() function 579 Jet<T, N> pow(double f, const Jet<T, N>& g) { in pow() function 588 Jet<T, N> pow(const Jet<T, N>& f, const Jet<T, N>& g) { in pow() function
|
| /external/chromium_org/third_party/tlslite/tests/ |
| D | tlstest.py | 772 def pow(self, x, y): return pow(x, y) member in serverTestCmd.MyFuncs
|
| /external/stlport/stlport/stl/ |
| D | _cmath.h | 465 inline double pow(double __x, int __y) { return _STLP_CMATH_FUNC_NAMESPACE::pow(__x, __STATIC_CAST(… in pow() function 469 inline long double pow(long double __x, int __y) { return _STLP_CMATH_FUNC_NAMESPACE::powl(__x, __S… in pow() function 472 inline long double pow(long double __x, int __y) { return ::__powl(__x, __STATIC_CAST(long double,_… in pow() function 474 inline long double pow(long double __x, int __y) { return _STLP_VENDOR_CSTD::__powl(__x, __STATIC_C… in pow() function 478 inline long double pow(long double __x, int __y) { return __STATIC_CAST(long double, _STLP_CMATH_FU… in pow() function
|
| D | _valarray.h | 1001 inline valarray<_Tp> pow(const valarray<_Tp>& __x, in pow() function 1011 inline valarray<_Tp> pow(const valarray<_Tp>& __x, const _Tp& __c) { in pow() function 1020 inline valarray<_Tp> pow(const _Tp& __c, const valarray<_Tp>& __x) { in pow() function
|
| /external/svox/pico/lib/ |
| D | picokpdf.c | 131 static picoos_uint8 convScaleFactorToBig(picoos_uint8 pow, picoos_uint8 bigpow) in convScaleFactorToBig()
|
| D | picocep.c | 484 static picoos_int32 picocep_fixptmultpow(picoos_int32 a, picoos_uint8 pow) in picocep_fixptmultpow() 509 static picoos_int32 picocep_fixptdivpow(picoos_int32 a, picoos_uint8 pow) in picocep_fixptdivpow() 601 picoos_uint8 multsz, pow; in picocep_fixptmult() local
|
| /external/lzma/CPP/7zip/UI/Console/ |
| D | BenchCon.cpp | 207 int pow = (dictionary < ((UInt32)1 << kStartDicLog)) ? kBenchMinDicLogSize : kStartDicLog; in LzmaBenchCon() local 270 for (int pow = 10; pow < 32; pow++) in CrcBenchCon() local
|
| /external/qemu/distrib/sdl-1.2.15/src/video/ |
| D | SDL_gamma.c | 34 #define pow(x, y) __ieee754_pow(x, y) macro
|
| /external/guava/guava/src/com/google/common/math/ |
| D | IntMath.java | 167 public static int pow(int b, int k) { in pow() method in IntMath
|
| D | LongMath.java | 202 public static long pow(long b, int k) { in pow() method in LongMath
|
| /external/chromium_org/third_party/skia/experimental/Intersection/ |
| D | CubicParameterizationCode.cpp | 235 int pow = 1; in match() local
|
| /external/skia/experimental/Intersection/ |
| D | CubicParameterizationCode.cpp | 235 int pow = 1; in match() local
|
| /external/clang/test/CodeGenCXX/ |
| D | temp-order.cpp | 5 static unsigned pow(unsigned Base, unsigned Power) { in pow() function
|
| /external/chromium_org/third_party/polymer/components-chromium/paper-ripple/ |
| D | raw-extracted.js | 354 var pow = Math.pow; variable
|
| /external/eigen/unsupported/Eigen/src/MatrixFunctions/ |
| D | MatrixPower.h | 24 MatrixPowerRetval(MatrixPower<MatrixType>& pow, RealScalar p) : m_pow(pow), m_p(p) in MatrixPowerRetval()
|
| /external/chromium_org/third_party/WebKit/Source/wtf/ |
| D | MathExtras.h | 173 #define pow(x, y) wtf_pow(x, y) macro
|
| /external/fio/ |
| D | parse.c | 187 unsigned int i, pow = 0, mult = kb_base; in __get_mult_bytes() local
|
| /external/chromium_org/third_party/icu/source/i18n/ |
| D | decNumberLocal.h | 257 #define TODIGIT(u, cut, c, pow) { \ argument
|
| D | nfsubs.cpp | 1326 int32_t pow = 0; in doParse() local
|
| /external/icu/icu4c/source/i18n/ |
| D | decNumberLocal.h | 257 #define TODIGIT(u, cut, c, pow) { \ argument
|