Home
last modified time | relevance | path

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

/aosp_15_r20/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
/aosp_15_r20/external/armnn/src/armnnUtils/
H A 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
/aosp_15_r20/external/llvm-libc/src/__support/CPP/type_traits/
H A Dis_floating_point.h21 template <typename T> struct is_floating_point { struct
43 is_floating_point<T>::value; argument
/aosp_15_r20/prebuilts/android-emulator/darwin-x86_64/include/flatbuffers/
H A Dstl_emulation.h139 template <typename T> using is_floating_point = std::is_floating_point<T>; variable
151 template <typename T> using is_floating_point = variable
/aosp_15_r20/system/chre/external/flatbuffers/include/flatbuffers/
H A Dstl_emulation.h144 template <typename T> using is_floating_point = std::is_floating_point<T>; variable
156 template <typename T> using is_floating_point = variable
/aosp_15_r20/external/flatbuffers/include/flatbuffers/
H A Dstl_emulation.h76 template <typename T> using is_floating_point = std::is_floating_point<T>; variable
92 template <typename T> struct is_floating_point : struct
/aosp_15_r20/prebuilts/android-emulator/linux-x86_64/include/flatbuffers/
H A Dstl_emulation.h76 template <typename T> using is_floating_point = std::is_floating_point<T>; variable
92 template <typename T> struct is_floating_point : struct
/aosp_15_r20/external/ComputeLibrary/tests/validation/
H A DHelpers.h45 struct is_floating_point : public std::is_floating_point<T> struct
/aosp_15_r20/external/ComputeLibrary/arm_compute/core/utils/misc/
H A DTraits.h37 struct is_floating_point : public std::is_floating_point<T> struct
/aosp_15_r20/external/fmtlib/test/
H A 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
/aosp_15_r20/external/ComputeLibrary/tests/framework/instruments/
H A DMeasurement.h216 bool is_floating_point; /**< Is the stored value floating point or integer ? */ member
/aosp_15_r20/external/pytorch/aten/src/ATen/templates/
H A DFunctions.h115 inline bool is_floating_point(const Tensor& tensor) { in is_floating_point() function
/aosp_15_r20/external/pytorch/torch/csrc/jit/tensorexpr/
H A Dtypes.h65 bool is_floating_point() const { in is_floating_point() function
/aosp_15_r20/external/pytorch/aten/src/ATen/native/
H A DTypeProperties.cpp35 bool is_floating_point(const Tensor& self) { in is_floating_point() function
/aosp_15_r20/external/ComputeLibrary/tests/validation/reference/
H A DPixelWiseMultiplication.cpp37 struct is_floating_point struct
/aosp_15_r20/external/pytorch/aten/src/ATen/core/
H A DTensorBase.h156 bool is_floating_point() const { in is_floating_point() function
/aosp_15_r20/external/ruy/ruy/
H A Dmat.h225 bool is_floating_point = false; member
/aosp_15_r20/external/OpenCL-CTS/test_conformance/subgroups/
H A Dsubgroup_common_templates.h357 template <typename Ty> bool is_floating_point() in is_floating_point() function
/aosp_15_r20/external/pytorch/aten/src/ATen/cpu/vec/
H A Dvec_base.h82 struct is_floating_point: struct
/aosp_15_r20/external/executorch/runtime/core/exec_aten/util/
H A Dscalar_type_util.h68 struct is_floating_point struct
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/move/include/boost/move/detail/
Dtype_traits.hpp608 struct is_floating_point struct
/aosp_15_r20/external/clang/test/SemaCXX/
H A Dtype-traits.cpp426 void is_floating_point() in is_floating_point() function
/aosp_15_r20/external/pytorch/torch/onnx/
H A Dsymbolic_opset9.py5108 def is_floating_point(g: jit_utils.GraphContext, self): function
/aosp_15_r20/art/compiler/optimizing/
H A Dcode_generator_arm_vixl.cc3098 const bool is_floating_point = DataType::IsFloatingPointType(select->GetType()); in VisitSelect() local