Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfp_mul_impl.inc34 return fromRep(toRep(a) | quietBit);
37 return fromRep(toRep(b) | quietBit);
42 return fromRep(aAbs | productSign);
45 return fromRep(qnanRep);
51 return fromRep(bAbs | productSign);
54 return fromRep(qnanRep);
59 return fromRep(productSign);
62 return fromRep(productSign);
95 return fromRep(infRep | productSign);
106 return fromRep(productSign);
[all …]
H A Dfp_add_impl.inc28 return fromRep(toRep(a) | quietBit);
31 return fromRep(toRep(b) | quietBit);
36 return fromRep(qnanRep);
50 return fromRep(toRep(a) & toRep(b));
107 return fromRep(0);
130 return fromRep(infRep | resultSign);
171 return fromRep(result);
H A Dfloatunsitf.c25 return fromRep(0); in __floatunsitf()
37 return fromRep(result); in __floatunsitf()
H A Dfloatunditf.c25 return fromRep(0); in __floatunditf()
37 return fromRep(result); in __floatunditf()
H A Dfloatunsidf.c26 return fromRep(0); in __floatunsidf()
38 return fromRep(result); in __floatunsidf()
H A Dfloatditf.c25 return fromRep(0); in __floatditf()
46 return fromRep(result | sign); in __floatditf()
H A Dfloatunsisf.c26 return fromRep(0); in __floatunsisf()
48 return fromRep(result); in __floatunsisf()
H A Dfp_lib.h204 static __inline fp_t fromRep(rep_t x) { in fromRep() function
274 return fromRep(infRep | signBit); in __compiler_rt_logbX()
315 return fromRep(sign | ((rep_t)(maxExponent - 1) << significandBits)) * 2.0f; in __compiler_rt_scalbnX()
319 fp_t tmp = fromRep(sign | (REP_C(1) << significandBits) | sig); in __compiler_rt_scalbnX()
323 tmp *= fromRep((rep_t)exp << significandBits); in __compiler_rt_scalbnX()
326 return fromRep(sign | ((rep_t)exp << significandBits) | sig); in __compiler_rt_scalbnX()
H A Dfp_div_impl.inc54 return fromRep(toRep(a) | quietBit);
57 return fromRep(toRep(b) | quietBit);
62 return fromRep(qnanRep);
65 return fromRep(aAbs | quotientSign);
70 return fromRep(quotientSign);
75 return fromRep(qnanRep);
78 return fromRep(quotientSign);
82 return fromRep(infRep | quotientSign);
384 return fromRep(infRep | quotientSign);
399 return fromRep(quotientSign);
[all …]
H A Dnegdf2.c16 COMPILER_RT_ABI fp_t __negdf2(fp_t a) { return fromRep(toRep(a) ^ signBit); } in __negdf2()
H A Dnegsf2.c16 COMPILER_RT_ABI fp_t __negsf2(fp_t a) { return fromRep(toRep(a) ^ signBit); } in __negsf2()
H A Dsubtf3.c21 return __addtf3(a, fromRep(toRep(b) ^ signBit)); in __subtf3()
H A Dsubdf3.c18 return __adddf3(a, fromRep(toRep(b) ^ signBit)); in __subdf3()
H A Dsubsf3.c18 return __addsf3(a, fromRep(toRep(b) ^ signBit)); in __subsf3()