Home
last modified time | relevance | path

Searched refs:InType (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/libc/src/__support/FPUtil/generic/
H A Dadd_sub.h29 template <bool IsSub, typename OutType, typename InType>
31 cpp::is_floating_point_v<InType> &&
32 sizeof(OutType) <= sizeof(InType),
34 add_or_sub(InType x, InType y) { in add_or_sub()
37 using InFPBits = FPBits<InType>; in add_or_sub()
106 volatile InType tmp = y; in add_or_sub()
116 InType x_abs = x_bits.abs().get_val(); in add_or_sub()
117 InType y_abs = y_bits.abs().get_val(); in add_or_sub()
188 template <typename OutType, typename InType>
190 cpp::is_floating_point_v<InType> &&
[all …]
H A DFMA.h31 template <typename OutType, typename InType>
33 cpp::is_floating_point_v<InType> &&
34 sizeof(OutType) <= sizeof(InType),
36 fma(InType x, InType y, InType z);
H A Dsqrt.h71 template <typename OutType, typename InType>
73 cpp::is_floating_point_v<InType> &&
74 sizeof(OutType) <= sizeof(InType),
76 sqrt(InType x) {
78 internal::SpecialLongDouble<InType>::VALUE) {
84 using InFPBits = FPBits<InType>;
112 internal::normalize<InType>(x_exp, x_mant);
H A Dmul.h27 template <typename OutType, typename InType>
29 cpp::is_floating_point_v<InType> &&
30 sizeof(OutType) <= sizeof(InType),
32 mul(InType x, InType y) { in mul()
35 using InFPBits = FPBits<InType>; in mul()
H A Ddiv.h27 template <typename OutType, typename InType>
29 cpp::is_floating_point_v<InType> &&
30 sizeof(OutType) <= sizeof(InType),
32 div(InType x, InType y) { in div()
35 using InFPBits = FPBits<InType>; in div()
/freebsd/contrib/llvm-project/libc/src/__support/FPUtil/
H A Dcast.h24 template <typename OutType, typename InType>
26 cpp::is_floating_point_v<InType>,
28 cast(InType x) { in cast()
30 if constexpr (cpp::is_same_v<InType, OutType>) in cast()
35 cpp::is_same_v<InType, bfloat16> in cast()
38 cpp::is_same_v<InType, float16> in cast()
41 using InFPBits = FPBits<InType>; in cast()
H A DFMA.h21 template <typename OutType, typename InType>
22 LIBC_INLINE OutType fma(InType x, InType y, InType z) { in fma()
/freebsd/contrib/llvm-project/llvm/lib/Demangle/
H A DRustDemangle.cpp101 void demangleImplPath(IsInType InType);
241 bool Demangler::demanglePath(IsInType InType, LeaveGenericsOpen LeaveOpen) { in demanglePath() argument
255 demangleImplPath(InType); in demanglePath()
262 demangleImplPath(InType); in demanglePath()
284 demanglePath(InType); in demanglePath()
315 demanglePath(InType); in demanglePath()
317 if (InType == IsInType::No) in demanglePath()
333 demangleBackref([&] { IsOpen = demanglePath(InType, LeaveOpen); }); in demanglePath()
346 void Demangler::demangleImplPath(IsInType InType) { in demangleImplPath() argument
349 demanglePath(InType); in demangleImplPath()
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCDeclVendor.cpp187 enum ParserState { Start = 0, InType, InPos } state = Start; in ObjCRuntimeMethodType() enumerator
203 state = InType; in ObjCRuntimeMethodType()
223 case InType: { in ObjCRuntimeMethodType()
275 state = InType; in ObjCRuntimeMethodType()