/third_party/boost/boost/numeric/ublas/ |
D | blas.hpp | 287 return m += t * outer_prod (v, conj (v)); in hr() 289 return m = m + t * outer_prod (v, conj (v)); in hr() 333 …return m += t * outer_prod (v1, conj (v2)) + type_traits<T>::conj (t) * outer_prod (v2, conj (v1)); in hr2() 335 …return m = m + t * outer_prod (v1, conj (v2)) + type_traits<T>::conj (t) * outer_prod (v2, conj (v… in hr2() 492 + type_traits<T2>::conj (t2) * prod (m3, herm (m2)); in hr2k()
|
D | hermitian.hpp | 34 if (m (i, j) != conj (m (j, i))) in is_hermitian() 172 value_type conj (const_reference t) { in conj() function 173 return type_traits<element_type>::conj (t); in conj() 361 …return type_traits<value_type>::conj (data () [triangular_type::element (layout_type (), j, size_,… in operator ()() 382 …return reference (*this, i, j, type_traits<value_type>::conj (data () [triangular_type::element (l… in operator ()() 394 …riangular_type::element (layout_type (), j, size_, i, size_)] = type_traits<value_type>::conj (t)); in insert_element() 1327 return type_traits<value_type>::conj (data () (j, i)); in operator ()() 1338 return conj_ = type_traits<value_type>::conj (data () (j, i)); in operator ()() 1344 return reference (*this, i, j, type_traits<value_type>::conj (data () (j, i))); in operator ()() 1357 return data () (j, i) = type_traits<value_type>::conj (t); in insert_element() [all …]
|
D | traits.hpp | 189 value_type conj (const_reference t) { in conj() function 300 value_type conj (const_reference t) { in conj() function 301 return std::conj (t); in conj()
|
/third_party/boost/libs/numeric/ublas/examples/tensor/ |
D | construction_access.cpp | 67 C.at(i,j,k,l) = std::conj(B.at(i,j,k,l)); in main() 77 std::transform(B.begin(), B.end(), D.begin(), [](auto const& b){ return std::conj(b); }); in main()
|
/third_party/boost/libs/math/test/float128/ |
D | test_std_lib.cpp | 162 BOOST_CHECK_EQUAL(conj(cm), std::complex<boost::floatmax_t>(2.5, -3.5)); in BOOST_AUTO_TEST_CASE() 171 BOOST_CHECK_EQUAL(proj(std::complex<boost::floatmax_t>(i, -2.5)), std::conj(ci)); in BOOST_AUTO_TEST_CASE() 173 BOOST_CHECK_EQUAL(proj(std::complex<boost::floatmax_t>(-i, -2.5)), std::conj(ci)); in BOOST_AUTO_TEST_CASE() 176 BOOST_CHECK_EQUAL(proj(std::complex<boost::floatmax_t>(2.5, -i)), std::conj(ci)); in BOOST_AUTO_TEST_CASE() 177 BOOST_CHECK_EQUAL(proj(std::complex<boost::floatmax_t>(-2.5, -i)), std::conj(ci)); in BOOST_AUTO_TEST_CASE() 182 BOOST_CHECK_EQUAL(proj(std::complex<boost::floatmax_t>(n, -i)), std::conj(ci)); in BOOST_AUTO_TEST_CASE()
|
/third_party/cmsis/CMSIS/DSP/Source/TransformFunctions/ |
D | arm_rfft_q31.c | 316 int32x4_t conj = { 1, -1, 1, -1 }; in arm_split_rifft_q31() local 341 vmulq_s32(conj, MVE_CMPLX_MULT_FX_AxB_S32(in2, coefB))); in arm_split_rifft_q31() 344 vmulq_s32(conj, MVE_CMPLX_MULT_FX_AxB(in2, coefB))); in arm_split_rifft_q31()
|
D | arm_rfft_q15.c | 386 int16x8_t conj = { 1, -1, 1, -1, 1, -1, 1, -1 }; /* conjugate */ in arm_split_rifft_q15() local 417 vmulq(conj, MVE_CMPLX_MULT_FX_AxB(in2, coefB))); in arm_split_rifft_q15()
|
/third_party/musl/libc-test/src/api/ |
D | tgmath.c | 61 #ifdef conj in f() 62 {double r = conj(x);} in f() 64 #error no conj(x) in f()
|
/third_party/musl/src/complex/ |
D | conj.c | 3 double complex conj(double complex z) in conj() function
|
/third_party/boost/libs/numeric/ublas/test/tensor/ |
D | test_functions.cpp | 304 tensor_complex_type r3 = ublas::conj( (a+a) / value_type( 2 ) ); in BOOST_FIXTURE_TEST_CASE() 305 …std::transform( b.begin(), b.end(), r00.begin(), [](auto const& l){ return std::conj( l ); } ); in BOOST_FIXTURE_TEST_CASE() 337 tensor_complex_type r3 = ublas::conj( (a+a) / complex_type( 2,2 ) ); in BOOST_FIXTURE_TEST_CASE() 338 …std::transform( b.begin(), b.end(), r00.begin(), [](auto const& l){ return std::conj( l ); } ); in BOOST_FIXTURE_TEST_CASE()
|
/third_party/boost/libs/numeric/ublas/doc/samples/ |
D | vector_unary.cpp | 23 std::cout << conj (v) << std::endl; in main()
|
D | matrix_unary.cpp | 24 std::cout << conj (m) << std::endl; in main()
|
/third_party/quickjs/ |
D | qjscalc.js | 350 conj() { method 556 conj() { method 585 conj() { method 683 conj() { method 815 conj() { method 1098 conj() { 1104 r[i] = a[i].conj(); 1468 conj() { method 1469 return RationalFunction(this.num.conj(), this.den.conj()); 1730 conj() { method [all …]
|
/third_party/boost/boost/numeric/ublas/tensor/ |
D | functions.hpp | 516 auto conj(detail::tensor_expression<T,D> const& expr) in conj() function 534 std::transform( a.begin(), a.end(), c.begin(), [](auto const& l){ return std::conj(l) ; } ); in conj() 546 auto conj(detail::tensor_expression<tensor<std::complex<V>,F,A>,D> const& expr) in conj() function 548 …r_expression<tensor<std::complex<V>,F,A>> (expr(), [] (auto const& l) { return std::conj( l ); } ); in conj()
|
/third_party/musl/include/ |
D | tgmath.h | 157 #undef conj 220 #define conj(x) __tg_complex(conj, (x)) macro
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | tgmath.h | 157 #undef conj 220 #define conj(x) __tg_complex(conj, (x)) macro
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | tgmath.h | 157 #undef conj 220 #define conj(x) __tg_complex(conj, (x)) macro
|
/third_party/musl/ndk_musl_include/ |
D | tgmath.h | 157 #undef conj 220 #define conj(x) __tg_complex(conj, (x)) macro
|
/third_party/boost/libs/multiprecision/test/ublas_interop/ |
D | test21.cpp | 49 t = ublas::blas_1::dot(ublas::conj(v1), v2); in test()
|
/third_party/boost/libs/numeric/ublas/test/ |
D | test21.cpp | 44 t = ublas::blas_1::dot (ublas::conj (v1), v2); in test()
|
/third_party/boost/libs/multiprecision/example/ |
D | mpc_examples.cpp | 29 std::cout << "Complex conjugate : " << conj(z1) << std::endl; in complex_number_examples()
|
D | cpp_complex_examples.cpp | 29 std::cout << "Complex conjugate : " << conj(z1) << std::endl; in complex_number_examples()
|
D | complex128_examples.cpp | 29 std::cout << "Complex conjugate : " << conj(z1) << std::endl; in complex_number_examples()
|
/third_party/boost/boost/compute/types/ |
D | complex.hpp | 166 struct conj struct
|
/third_party/boost/libs/compute/include/boost/compute/types/ |
D | complex.hpp | 166 struct conj struct
|