Home
last modified time | relevance | path

Searched defs:is_floating_point (Results 1 – 22 of 22) sorted by relevance

/external/sdv/vsomeip/third_party/boost/type_traits/include/boost/type_traits/
Dis_floating_point.hpp16 template <class T> struct is_floating_point : public false_type{}; struct
17 template <class T> struct is_floating_point<const T> : public is_floating_point<T>{}; struct
18 template <class T> struct is_floating_point<volatile const T> : public is_floating_point<T>{}; struct
19 template <class T> struct is_floating_point<volatile T> : public is_floating_point<T>{}; struct
20 template<> struct is_floating_point<float> : public true_type{}; struct
21 template<> struct is_floating_point<double> : public true_type{}; struct
22 template<> struct is_floating_point<long double> : public true_type{}; struct
25 template<> struct is_floating_point<__float128> : public true_type{}; struct
/external/armnn/src/armnnUtils/
DHalf.hpp30 struct is_floating_point<armnn::Half> struct
35 struct is_floating_point<const armnn::Half> struct
40 struct is_floating_point<volatile armnn::Half> struct
/external/cronet/tot/third_party/llvm-libc/src/src/__support/CPP/type_traits/
Dis_floating_point.h21 template <typename T> struct is_floating_point { struct
43 is_floating_point<T>::value; argument
/external/cronet/stable/third_party/llvm-libc/src/src/__support/CPP/type_traits/
Dis_floating_point.h21 template <typename T> struct is_floating_point { struct
43 is_floating_point<T>::value; argument
/external/llvm-libc/src/__support/CPP/type_traits/
Dis_floating_point.h21 template <typename T> struct is_floating_point { struct
43 is_floating_point<T>::value; argument
/external/ComputeLibrary/tests/validation/
DHelpers.h45 struct is_floating_point : public std::is_floating_point<T> struct
/external/ComputeLibrary/arm_compute/core/utils/misc/
DTraits.h37 struct is_floating_point : public std::is_floating_point<T> struct
/external/ComputeLibrary/tests/framework/instruments/
DMeasurement.h216 bool is_floating_point; /**< Is the stored value floating point or integer ? */ member
/external/pytorch/aten/src/ATen/templates/
DFunctions.h115 inline bool is_floating_point(const Tensor& tensor) { in is_floating_point() function
/external/pytorch/torch/csrc/jit/tensorexpr/
Dtypes.h65 bool is_floating_point() const { in is_floating_point() function
/external/flatbuffers/include/flatbuffers/
Dstl_emulation.h81 template <typename T> using is_floating_point = std::is_floating_point<T>; variable
97 template <typename T> struct is_floating_point : struct
/external/pytorch/aten/src/ATen/native/
DTypeProperties.cpp35 bool is_floating_point(const Tensor& self) { in is_floating_point() function
/external/fmtlib/test/
Dformat-impl-test.cc310 template <> struct is_floating_point<double_double> : std::true_type {}; struct
317 template <> struct is_floating_point<slow_float> : std::true_type {}; struct
/external/ComputeLibrary/tests/validation/reference/
DPixelWiseMultiplication.cpp37 struct is_floating_point struct
/external/pytorch/aten/src/ATen/core/
DTensorBase.h156 bool is_floating_point() const { in is_floating_point() function
/external/OpenCL-CTS/test_conformance/subgroups/
Dsubgroup_common_templates.h357 template <typename Ty> bool is_floating_point() in is_floating_point() function
/external/ruy/ruy/
Dmat.h225 bool is_floating_point = false; member
/external/pytorch/aten/src/ATen/cpu/vec/
Dvec_base.h82 struct is_floating_point: struct
/external/executorch/runtime/core/exec_aten/util/
Dscalar_type_util.h68 struct is_floating_point struct
/external/sdv/vsomeip/third_party/boost/move/include/boost/move/detail/
Dtype_traits.hpp608 struct is_floating_point struct
/external/clang/test/SemaCXX/
Dtype-traits.cpp426 void is_floating_point() in is_floating_point() function
/external/pytorch/torch/onnx/
Dsymbolic_opset9.py5108 def is_floating_point(g: jit_utils.GraphContext, self): function