Home
last modified time | relevance | path

Searched refs:IsFloatingPointType (Results 1 – 25 of 32) sorted by relevance

12

/llvm-project-15.0.7/libc/src/__support/FPUtil/
H A DManipulationFunctions.h27 cpp::EnableIfType<cpp::IsFloatingPointType<T>::Value, int> = 0>
44 cpp::EnableIfType<cpp::IsFloatingPointType<T>::Value, int> = 0>
66 cpp::EnableIfType<cpp::IsFloatingPointType<T>::Value, int> = 0>
74 cpp::EnableIfType<cpp::IsFloatingPointType<T>::Value, int> = 0>
103 cpp::EnableIfType<cpp::IsFloatingPointType<T>::Value, int> = 0>
122 cpp::EnableIfType<cpp::IsFloatingPointType<T>::Value, int> = 0>
149 cpp::EnableIfType<cpp::IsFloatingPointType<T>::Value, int> = 0>
H A DNearestIntegerOperations.h24 cpp::EnableIfType<cpp::IsFloatingPointType<T>::Value, int> = 0>
56 cpp::EnableIfType<cpp::IsFloatingPointType<T>::Value, int> = 0>
95 cpp::EnableIfType<cpp::IsFloatingPointType<T>::Value, int> = 0>
106 cpp::EnableIfType<cpp::IsFloatingPointType<T>::Value, int> = 0>
158 cpp::EnableIfType<cpp::IsFloatingPointType<T>::Value, int> = 0>
238 cpp::EnableIfType<cpp::IsFloatingPointType<F>::Value &&
280 cpp::EnableIfType<cpp::IsFloatingPointType<F>::Value &&
288 cpp::EnableIfType<cpp::IsFloatingPointType<F>::Value &&
H A DBasicOperations.h20 cpp::EnableIfType<cpp::IsFloatingPointType<T>::Value, int> = 0>
28 cpp::EnableIfType<cpp::IsFloatingPointType<T>::Value, int> = 0>
47 cpp::EnableIfType<cpp::IsFloatingPointType<T>::Value, int> = 0>
66 cpp::EnableIfType<cpp::IsFloatingPointType<T>::Value, int> = 0>
H A DDivisionAndRemainderOperations.h26 cpp::EnableIfType<cpp::IsFloatingPointType<T>::Value, int> = 0>
H A DFPBits.h42 static_assert(cpp::IsFloatingPointType<T>::Value,
H A DHypot.h101 cpp::EnableIfType<cpp::IsFloatingPointType<T>::Value, int> = 0>
H A DNormalFloat.h30 cpp::IsFloatingPointType<T>::Value,
/llvm-project-15.0.7/libc/utils/MPFRWrapper/
H A DMPFRUtils.h84 __llvm_libc::cpp::IsFloatingPointType<T>::Value,
93 __llvm_libc::cpp::IsFloatingPointType<T>::Value,
114 static constexpr bool VALUE = cpp::IsFloatingPointType<T>::Value;
264 cpp::IsFloatingPointType<InputType>::Value) ||
267 cpp::IsFloatingPointType<InputType>::Value &&
271 cpp::IsFloatingPointType<OutputType>::Value &&
279 cpp::IsFloatingPointType<OutputType>::Value &&
H A DMPFRUtils.cpp399 cpp::EnableIfType<cpp::IsFloatingPointType<T>::Value, double> ulp(T input) { in ulp()
473 cpp::EnableIfType<cpp::IsFloatingPointType<InputType>::Value, MPFRNumber>
522 cpp::EnableIfType<cpp::IsFloatingPointType<InputType>::Value, MPFRNumber>
535 cpp::EnableIfType<cpp::IsFloatingPointType<InputType>::Value, MPFRNumber>
551 cpp::EnableIfType<cpp::IsFloatingPointType<InputType>::Value, MPFRNumber>
566 cpp::EnableIfType<cpp::IsFloatingPointType<InputType>::Value, MPFRNumber>
/llvm-project-15.0.7/libc/src/__support/CPP/
H A Dstringstream.h65 template <typename T, EnableIfType<IsFloatingPointType<T>::Value, int> = 0>
69 static_assert(!IsFloatingPointType<T>::Value,
H A DTypeTraits.h80 template <typename Type> struct IsFloatingPointType {
89 IsIntegral<Type>::Value || IsFloatingPointType<Type>::Value;
/llvm-project-15.0.7/libc/src/__support/FPUtil/generic/
H A DFMod.h122 static_assert(cpp::IsFloatingPointType<T>::Value,
160 static_assert(cpp::IsFloatingPointType<T>::Value,
219 static_assert(cpp::IsFloatingPointType<T>::Value,
H A Dsqrt.h67 static inline cpp::EnableIfType<cpp::IsFloatingPointType<T>::Value, T>
/llvm-project-15.0.7/libc/utils/UnitTest/
H A DFPMatcher.h24 cpp::EnableIfType<cpp::IsFloatingPointType<ValType>::Value, void>
29 static_assert(__llvm_libc::cpp::IsFloatingPointType<T>::Value,
H A DFPMatcher.cpp23 cpp::EnableIfType<cpp::IsFloatingPointType<ValType>::Value, void>
/llvm-project-15.0.7/libc/fuzzing/math/
H A DCompare.h16 __llvm_libc::cpp::EnableIfType<__llvm_libc::cpp::IsFloatingPointType<T>::Value,
/llvm-project-15.0.7/lldb/source/Plugins/ABI/X86/
H A DABIWindows_x86_64.cpp342 } else if (compiler_type.IsFloatingPointType(count, is_complex)) { in SetReturnValueObject()
581 field_compiler_type.IsFloatingPointType(count, is_complex)) { in FlattenAggregateType()
686 field_compiler_type.IsFloatingPointType(count, is_complex)) { in GetReturnValueObjectImpl()
H A DABISysV_x86_64.cpp335 } else if (compiler_type.IsFloatingPointType(count, is_complex)) { in SetReturnValueObject()
603 field_compiler_type.IsFloatingPointType(count, is_complex)) { in FlattenAggregateType()
729 } else if (field_compiler_type.IsFloatingPointType(count, is_complex)) { in GetReturnValueObjectImpl()
H A DABIMacOSX_i386.cpp240 } else if (compiler_type.IsFloatingPointType(count, is_complex)) { in SetReturnValueObject()
/llvm-project-15.0.7/lldb/source/Plugins/ABI/ARM/
H A DABISysV_arm.cpp1536 } else if (compiler_type.IsFloatingPointType(float_count, is_complex)) { in GetReturnValueObjectImpl()
1611 } else if (base_type.IsFloatingPointType(float_count, is_complex)) { in GetReturnValueObjectImpl()
1629 if (base_type.IsFloatingPointType(float_count, is_complex)) { in GetReturnValueObjectImpl()
1785 } else if (compiler_type.IsFloatingPointType(count, is_complex)) { in SetReturnValueObject()
/llvm-project-15.0.7/lldb/source/Symbol/
H A DCompilerType.cpp191 bool CompilerType::IsFloatingPointType(uint32_t &count, in IsFloatingPointType() function in CompilerType
194 return m_type_system->IsFloatingPointType(m_type, count, is_complex); in IsFloatingPointType()
/llvm-project-15.0.7/lldb/source/Plugins/ABI/Mips/
H A DABISysV_mips.cpp720 } else if (compiler_type.IsFloatingPointType(count, is_complex)) { in SetReturnValueObject()
829 } else if (return_compiler_type.IsFloatingPointType(count, is_complex)) { in GetReturnValueObjectImpl()
H A DABISysV_mips64.cpp904 if (field_compiler_type.IsFloatingPointType(count, is_complex)) in GetReturnValueObjectImpl()
1011 field_compiler_type.IsFloatingPointType(count, is_complex)) { in GetReturnValueObjectImpl()
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DCompilerType.h101 bool IsFloatingPointType(uint32_t &count, bool &is_complex) const;
/llvm-project-15.0.7/lldb/source/Plugins/ABI/PowerPC/
H A DABISysV_ppc.cpp460 } else if (compiler_type.IsFloatingPointType(count, is_complex)) { in SetReturnValueObject()
745 } else if (field_compiler_type.IsFloatingPointType(count, is_complex)) { in GetReturnValueObjectImpl()

12