/external/eigen/unsupported/test/ |
gmres.cpp | 31 CALL_SUBTEST_2(test_gmres_T<std::complex<double> >());
|
matrix_square_root.cpp | 33 // for complex matrices, any matrix is fine 60 CALL_SUBTEST_5(testMatrixSqrt(Matrix<std::complex<float>,1,1>()));
|
/external/icu4c/test/intltest/ |
tchcfmt.h | 28 * tests functionality in a more complex example,
|
/external/mesa3d/src/glsl/tests/lower_jumps/ |
lower_returns_3.opt_test | 6 # complex structure of ifs, and one at the end of a function.
|
/external/mockito/src/org/mockito/ |
Captor.java | 32 * One of the advantages of using @Captor annotation is that you can avoid warnings related capturing complex generic types.
|
/external/valgrind/main/docs/internals/ |
m_syswrap.txt | 2 This module handles the complex business of handing system calls off
|
/frameworks/rs/scriptc/ |
rs_element.rsh | 42 * For complex elements, this function will return the 53 * For complex elements, this function will return the length of 65 * For complex elements, this function will return the 79 * For complex elements, some sub-elements could be statically
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.value.ops/ |
arg.pass.cpp | 10 // <complex> 14 // arg(const complex<T>& x); 16 #include <complex> 25 std::complex<T> z(1, 0);
|
/prebuilts/sdk/renderscript/include/ |
rs_element.rsh | 42 * For complex elements, this function will return the 53 * For complex elements, this function will return the length of 65 * For complex elements, this function will return the 79 * For complex elements, some sub-elements could be statically
|
/external/llvm/lib/Target/Hexagon/ |
HexagonIntrinsicsV3.td | 17 // MTYPE / COMPLEX / Vector reduce complex multiply real or imaginary.
|
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/ |
entropy_coding.h | 24 /* decode complex spectrum (return number of bytes in stream) */ 30 /* encode complex spectrum */
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/cmplx.over/ |
imag.pass.cpp | 10 // <complex> 16 #include <complex>
|
real.pass.cpp | 10 // <complex> 16 #include <complex>
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_ccosh.c | 28 * Hyperbolic cosine of a complex argument z = x + i y. 40 #include <complex.h> 47 double complex 48 ccosh(double complex z) 149 double complex 150 ccos(double complex z)
|
s_csinh.c | 28 * Hyperbolic sine of a complex argument z = x + i y. 40 #include <complex.h> 47 double complex 48 csinh(double complex z) 150 double complex 151 csin(double complex z)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
fractions.py | 300 # float and complex don't have those operations, but we 304 elif isinstance(other, complex): 305 return complex(self) + other 318 elif isinstance(other, Complex): 319 return complex(other) + complex(self) 325 refer to Fraction, float, or complex as "boilerplate". 'r' 328 Complex. The first three involve 'r + b': 330 1. If B <: Fraction, int, float, or complex, we handle 343 Complex [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
fractions.py | 300 # float and complex don't have those operations, but we 304 elif isinstance(other, complex): 305 return complex(self) + other 318 elif isinstance(other, Complex): 319 return complex(other) + complex(self) 325 refer to Fraction, float, or complex as "boilerplate". 'r' 328 Complex. The first three involve 'r + b': 330 1. If B <: Fraction, int, float, or complex, we handle 343 Complex [all...] |
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/ |
Font.cpp | 188 if (codePathToUse != Complex && typesettingFeatures() && (runInfo.from || runInfo.to != runInfo.run.length())) 189 codePathToUse = Complex; 191 if (codePathToUse != Complex) 204 if (codePathToUse != Complex && typesettingFeatures() && (runInfo.from || runInfo.to != runInfo.run.length())) 205 codePathToUse = Complex; 207 if (codePathToUse != Complex) 216 if (codePathToUse != Complex) { 217 // The complex path is more restrictive about returning fallback fonts than the simple path, so we need an explicit test to make their behaviors match. 232 if (codePathToUse == Complex) 279 if (codePathToUse != Complex && typesettingFeatures() && (from || to != run.length()) [all...] |
/external/eigen/Eigen/src/Core/ |
GenericPacketMath.h | 216 /** \internal \returns \a a with real and imaginary part flipped (for complex type only) */ 314 * Fast complex products (GCC generates a function call which is very slow) 317 template<> inline std::complex<float> pmul(const std::complex<float>& a, const std::complex<float>& b) 318 { return std::complex<float>(real(a)*real(b) - imag(a)*imag(b), imag(a)*real(b) + real(a)*imag(b)); } 320 template<> inline std::complex<double> pmul(const std::complex<double>& a, const std::complex<double>& b) 321 { return std::complex<double>(real(a)*real(b) - imag(a)*imag(b), imag(a)*real(b) + real(a)*imag(b)); [all...] |
/external/eigen/blas/ |
chbmv.f | 3 COMPLEX ALPHA,BETA 8 COMPLEX A(LDA,*),X(*),Y(*) 47 * ALPHA - COMPLEX . 51 * A - COMPLEX array of DIMENSION ( LDA, n ). 98 * X - COMPLEX array of DIMENSION at least 109 * BETA - COMPLEX . 113 * Y - COMPLEX array of DIMENSION at least 137 COMPLEX ONE 139 COMPLEX ZERO 143 COMPLEX TEMP1,TEMP [all...] |
chpmv.f | 3 COMPLEX ALPHA,BETA 8 COMPLEX AP(*),X(*),Y(*) 42 * ALPHA - COMPLEX . 46 * AP - COMPLEX array of DIMENSION at least 62 * X - COMPLEX array of dimension at least 73 * BETA - COMPLEX . 78 * Y - COMPLEX array of dimension at least 103 COMPLEX ONE 105 COMPLEX ZERO 109 COMPLEX TEMP1,TEMP [all...] |
zhbmv.f | 3 DOUBLE COMPLEX ALPHA,BETA 8 DOUBLE COMPLEX A(LDA,*),X(*),Y(*) 47 * ALPHA - COMPLEX*16 . 51 * A - COMPLEX*16 array of DIMENSION ( LDA, n ). 98 * X - COMPLEX*16 array of DIMENSION at least 109 * BETA - COMPLEX*16 . 113 * Y - COMPLEX*16 array of DIMENSION at least 137 DOUBLE COMPLEX ONE 139 DOUBLE COMPLEX ZERO 143 DOUBLE COMPLEX TEMP1,TEMP [all...] |
zhpmv.f | 3 DOUBLE COMPLEX ALPHA,BETA 8 DOUBLE COMPLEX AP(*),X(*),Y(*) 42 * ALPHA - COMPLEX*16 . 46 * AP - COMPLEX*16 array of DIMENSION at least 62 * X - COMPLEX*16 array of dimension at least 73 * BETA - COMPLEX*16 . 78 * Y - COMPLEX*16 array of dimension at least 103 DOUBLE COMPLEX ONE 105 DOUBLE COMPLEX ZERO 109 DOUBLE COMPLEX TEMP1,TEMP [all...] |
/external/chromium_org/third_party/WebKit/Source/core/platform/audio/ |
FFTFrame.cpp | 40 #include "wtf/Complex.h" 102 Complex c1(realP1[i], imagP1[i]); 103 Complex c2(realP2[i], imagP2[i]); 169 Complex c = complexFromMagnitudePhase(mag, phaseAccum); 191 Complex c(realP[i], imagP[i]); 238 Complex c(realP[i], imagP[i]); 244 Complex c2 = complexFromMagnitudePhase(mag, phase);
|
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/include/ |
tgmath.h | 35 #include <complex.h> 39 means the generic argument(s) may be real or complex, _REAL means 40 real only, _CPLX means complex only. If there is no suffix, we are 47 If any generic parameter is complex, we use a complex version. Otherwise 104 /* Functions defined in both <math.h> and <complex.h> (7.22p4) */ 163 /* Functions defined in <complex.h> only (7.22p6) */
|