/external/eigen/unsupported/Eigen/src/FFT/ |
D | ei_fftw_impl.h | 54 typedef fftwf_complex complex_type; 60 void fwd(complex_type * dst,complex_type * src,int nfft) { 65 void inv(complex_type * dst,complex_type * src,int nfft) { 70 void fwd(complex_type * dst,scalar_type * src,int nfft) { 75 void inv(scalar_type * dst,complex_type * src,int nfft) { 82 void fwd2( complex_type * dst,complex_type * src,int n0,int n1) { 87 void inv2( complex_type * dst,complex_type * src,int n0,int n1) { 97 typedef fftw_complex complex_type; 103 void fwd(complex_type * dst,complex_type * src,int nfft) { 108 void inv(complex_type * dst,complex_type * src,int nfft) { [all …]
|
/external/cronet/tot/third_party/llvm-libc/src/src/complex/generic/ |
D | CMakeLists.txt | 11 libc.src.__support.complex_type 24 libc.src.__support.complex_type 37 libc.src.__support.complex_type 50 libc.src.__support.complex_type 65 libc.src.__support.complex_type 80 libc.src.__support.complex_type 93 libc.src.__support.complex_type 106 libc.src.__support.complex_type 119 libc.src.__support.complex_type 134 libc.src.__support.complex_type
|
/external/cronet/stable/third_party/llvm-libc/src/src/complex/generic/ |
D | CMakeLists.txt | 11 libc.src.__support.complex_type 24 libc.src.__support.complex_type 37 libc.src.__support.complex_type 50 libc.src.__support.complex_type 65 libc.src.__support.complex_type 80 libc.src.__support.complex_type 93 libc.src.__support.complex_type 106 libc.src.__support.complex_type 119 libc.src.__support.complex_type 134 libc.src.__support.complex_type
|
/external/sdv/vsomeip/third_party/boost/numeric/ublas/test/tensor/ |
D | test_functions.cpp | 277 using complex_type = std::complex<value_type>; in BOOST_FIXTURE_TEST_CASE() typedef 280 using tensor_complex_type = ublas::tensor<complex_type,layout_type>; in BOOST_FIXTURE_TEST_CASE() 321 auto one = complex_type(1,1); in BOOST_FIXTURE_TEST_CASE() 326 tensor_complex_type b = (a+a) / complex_type( 2,2 ); in BOOST_FIXTURE_TEST_CASE() 329 tensor_type r1 = ublas::real( (a+a) / complex_type( 2,2 ) ); in BOOST_FIXTURE_TEST_CASE() 333 tensor_type r2 = ublas::imag( (a+a) / complex_type( 2,2 ) ); in BOOST_FIXTURE_TEST_CASE() 337 tensor_complex_type r3 = ublas::conj( (a+a) / complex_type( 2,2 ) ); in BOOST_FIXTURE_TEST_CASE()
|
/external/tensorflow/tensorflow/compiler/mlir/lite/utils/ |
D | variables_utils.cc | 47 if (auto complex_type = element_type.dyn_cast<mlir::ComplexType>()) { in IsSupportedVariableType() local 48 auto complex_element_type = complex_type.getElementType(); in IsSupportedVariableType()
|
D | convert_type.cc | 43 } else if (auto complex_type = type.dyn_cast<mlir::ComplexType>()) { in ConvertTypeToTensorType() local 44 if (complex_type.getElementType().isF32()) { in ConvertTypeToTensorType() 46 } else if (complex_type.getElementType().isF64()) { in ConvertTypeToTensorType()
|
D | constant_utils.cc | 50 } else if (auto complex_type = element_type.dyn_cast<mlir::ComplexType>()) { in CreateConstOpWithSingleValue() local 51 auto etype = complex_type.getElementType(); in CreateConstOpWithSingleValue()
|
/external/tensorflow/tensorflow/compiler/xla/ |
D | primitive_util.cc | 169 PrimitiveType ComplexComponentType(PrimitiveType complex_type) { in ComplexComponentType() argument 170 switch (complex_type) { in ComplexComponentType() 177 << PrimitiveType_Name(complex_type); in ComplexComponentType()
|
D | primitive_util.h | 168 PrimitiveType ComplexComponentType(PrimitiveType complex_type);
|
/external/tensorflow/tensorflow/core/transforms/utils/ |
D | op_cat_helper.cc | 59 ComplexType complex_type = type.cast<ComplexType>(); in SplatElementsAttrHasValue() local 60 if (complex_type.getElementType().isF32()) { in SplatElementsAttrHasValue() 62 } else if (complex_type.getElementType().isF64()) { in SplatElementsAttrHasValue()
|
/external/pytorch/aten/src/ATen/native/ |
D | ComplexHelper.h | 89 const auto complex_type = c10::toComplexType(self.scalar_type()); in view_as_complex() local 94 return view_tensor(self, complex_type, new_storage_offset, new_sizes, new_strides); in view_as_complex()
|
/external/tensorflow/tensorflow/compiler/xla/mlir/transforms/runtime/ |
D | type_converter.cc | 90 if (auto complex_type = type.dyn_cast<mlir::ComplexType>()) { in ConvertElementType() local 91 auto element_type = complex_type.getElementType(); in ConvertElementType()
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/utils/ |
D | convert_type.cc | 127 } else if (auto complex_type = type.dyn_cast<mlir::ComplexType>()) { in ConvertScalarTypeToDataType() local 128 auto etype = complex_type.getElementType(); in ConvertScalarTypeToDataType()
|
/external/tensorflow/tensorflow/core/ir/importexport/ |
D | convert_types.cc | 135 } else if (auto complex_type = type.dyn_cast<ComplexType>()) { in ConvertScalarTypeToDataType() local 136 auto etype = complex_type.getElementType(); in ConvertScalarTypeToDataType()
|
/external/tensorflow/tensorflow/compiler/mlir/xla/ |
D | type_to_shape.cc | 54 } else if (auto complex_type = type.dyn_cast<mlir::ComplexType>()) { in TypeToPrimitiveType() local 55 mlir::Type element_ty = complex_type.getElementType(); in TypeToPrimitiveType()
|
D | hlo_utils.cc | 191 if (auto complex_type = element_type.dyn_cast<mlir::ComplexType>()) { in CopyDenseElementsDataToXlaFormat() local 192 if (complex_type.getElementType().isF32()) { in CopyDenseElementsDataToXlaFormat() 196 if (complex_type.getElementType().isF64()) { in CopyDenseElementsDataToXlaFormat() 209 if (auto complex_type = type.dyn_cast<mlir::ComplexType>()) { in GetElementTypeBytes() local 211 GetElementTypeBytes(complex_type.getElementType())); in GetElementTypeBytes()
|
/external/cronet/stable/third_party/llvm-libc/src/src/__support/ |
D | CMakeLists.txt | 235 complex_type 237 complex_type.h
|
/external/cronet/tot/third_party/llvm-libc/src/src/__support/ |
D | CMakeLists.txt | 235 complex_type 237 complex_type.h
|
/external/tensorflow/tensorflow/compiler/mlir/tfrt/transforms/ |
D | corert_converter.cc | 76 if (auto complex_type = type.dyn_cast<mlir::ComplexType>()) { in IsSupportedNumericDType() local 77 auto element_type = complex_type.getElementType(); in IsSupportedNumericDType()
|
/external/tensorflow/tensorflow/core/ir/types/ |
D | dialect.cc | 555 } else if (auto complex_type = type.dyn_cast<ComplexType>()) { in get() local 556 Type etype = complex_type.getElementType(); in get()
|
/external/pytorch/torch/_inductor/ |
D | decomposition.py | 406 complex_type = torch.promote_types(x.dtype, y.dtype) 429 result = torch.flatten(x_reshaped + z_reshaped, start_dim=-2).view(complex_type)
|
/external/tensorflow/tensorflow/compiler/mlir/lite/ |
D | flatbuffer_export.cc | 157 } else if (auto complex_type = type.dyn_cast<mlir::ComplexType>()) { in GetTFLiteType() local 158 auto ftype = complex_type.getElementType(); in GetTFLiteType()
|
/external/sdv/vsomeip/third_party/boost/thread/doc/ |
D | futures.qbk | 228 complex_type the_data;
|
/external/tensorflow/tensorflow/compiler/mlir/xla/tests/translate/ |
D | import.hlotxt | 1419 // CHECK-LABEL: func private @complex_type 1421 %complex_type (Arg_0.1: c64[2], Arg_1.2: c128[2]) -> (f32[2], f64[2]) {
|
/external/rust/android-crates-io/crates/bindgen/codegen/ |
D | mod.rs | 5167 let complex_type = quote! { in prepend_complex_type() localVariable 5176 let items = vec![complex_type]; in prepend_complex_type()
|