Home
last modified time | relevance | path

Searched refs:src_t (Results 1 – 14 of 14) sorted by relevance

/src/contrib/llvm-project/compiler-rt/lib/builtins/ !
H A Dfp_extend.h20 typedef float src_t; typedef
23 static const int srcBits = sizeof(src_t) * CHAR_BIT;
31 typedef double src_t; typedef
34 static const int srcBits = sizeof(src_t) * CHAR_BIT;
44 typedef xf_float src_t; typedef
57 typedef _Float16 src_t; typedef
59 typedef uint16_t src_t; typedef
63 static const int srcBits = sizeof(src_t) * CHAR_BIT;
77 typedef __bf16 src_t; typedef
79 typedef uint16_t src_t; typedef
[all …]
H A Dfp_trunc.h19 typedef float src_t; typedef
22 static const int srcBits = sizeof(src_t) * CHAR_BIT;
29 typedef double src_t; typedef
32 static const int srcBits = sizeof(src_t) * CHAR_BIT;
39 typedef tf_float src_t; typedef
42 static const int srcBits = sizeof(src_t) * CHAR_BIT;
142 static inline src_rep_t srcToRep(src_t x) { in srcToRep()
144 src_t f; in srcToRep()
H A Dint_to_fp.h20 typedef int64_t src_t; typedef
25 typedef uint64_t src_t; typedef
30 typedef __int128_t src_t; typedef
35 typedef __uint128_t src_t; typedef
H A Dextendhfsf2.c15 COMPILER_RT_ABI NOINLINE float __extendhfsf2(src_t a) { in __extendhfsf2()
19 COMPILER_RT_ABI float __gnu_h2f_ieee(src_t a) { return __extendhfsf2(a); } in __gnu_h2f_ieee()
23 AEABI_RTABI float __aeabi_h2f(src_t a) { return __extendhfsf2(a); } in __aeabi_h2f()
H A Dint_to_fp_impl.inc17 static __inline dst_t __floatXiYf__(src_t a) {
23 srcBits = sizeof(src_t) * CHAR_BIT,
24 srcIsSigned = ((src_t)-1) < 0,
27 const src_t s = srcIsSigned ? a >> (srcBits - 1) : 0;
H A Dextendbfsf2.c13 COMPILER_RT_ABI float __extendbfsf2(src_t a) { return __extendXfYf2__(a); } in __extendbfsf2()
H A Dextenddftf2.c17 COMPILER_RT_ABI dst_t __extenddftf2(src_t a) { return __extendXfYf2__(a); } in __extenddftf2()
H A Dtrunctfsf2.c17 COMPILER_RT_ABI dst_t __trunctfsf2(src_t a) { return __truncXfYf2__(a); } in __trunctfsf2()
H A Dtrunctfdf2.c17 COMPILER_RT_ABI dst_t __trunctfdf2(src_t a) { return __truncXfYf2__(a); } in __trunctfdf2()
H A Dextendsftf2.c17 COMPILER_RT_ABI dst_t __extendsftf2(src_t a) { return __extendXfYf2__(a); } in __extendsftf2()
H A Dtrunctfhf2.c18 COMPILER_RT_ABI dst_t __trunctfhf2(src_t a) { return __truncXfYf2__(a); } in __trunctfhf2()
H A Dextendhftf2.c18 COMPILER_RT_ABI dst_t __extendhftf2(src_t a) { return __extendXfYf2__(a); } in __extendhftf2()
H A Dfp_extend_impl.inc44 static __inline dst_t __extendXfYf2__(src_t a) {
H A Dfp_trunc_impl.inc45 static __inline dst_t __truncXfYf2__(src_t a) {