Searched refs:toRep (Results 1 - 16 of 16) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Ddivsf3.c23 const unsigned int aExponent = toRep(a) >> significandBits & maxExponent;
24 const unsigned int bExponent = toRep(b) >> significandBits & maxExponent;
25 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit;
27 rep_t aSignificand = toRep(a) & significandMask;
28 rep_t bSignificand = toRep(b) & significandMask;
35 const rep_t aAbs = toRep(a) & absMask;
36 const rep_t bAbs = toRep(b) & absMask;
40 return fromRep(toRep(a) | quietBit);
43 return fromRep(toRep(
[all...]
H A Dfp_mul_impl.inc17 const unsigned int aExponent = toRep(a) >> significandBits & maxExponent;
18 const unsigned int bExponent = toRep(b) >> significandBits & maxExponent;
19 const rep_t productSign = (toRep(a) ^ toRep(b)) & signBit;
21 rep_t aSignificand = toRep(a) & significandMask;
22 rep_t bSignificand = toRep(b) & significandMask;
29 const rep_t aAbs = toRep(a) & absMask;
30 const rep_t bAbs = toRep(b) & absMask;
34 return fromRep(toRep(a) | quietBit);
37 return fromRep(toRep(
[all...]
H A Dcomparetf2.c47 const srep_t aInt = toRep(a);
48 const srep_t bInt = toRep(b);
100 const srep_t aInt = toRep(a);
101 const srep_t bInt = toRep(b);
129 const rep_t aAbs = toRep(a) & absMask;
130 const rep_t bAbs = toRep(b) & absMask;
H A Dfp_add_impl.inc18 rep_t aRep = toRep(a);
19 rep_t bRep = toRep(b);
28 return fromRep(toRep(a) | quietBit);
31 return fromRep(toRep(b) | quietBit);
35 if ((toRep(a) ^ toRep(b)) == signBit)
50 return fromRep(toRep(a) & toRep(b));
H A Dnegdf2.c16 COMPILER_RT_ABI fp_t __negdf2(fp_t a) { return fromRep(toRep(a) ^ signBit); }
H A Dnegsf2.c16 COMPILER_RT_ABI fp_t __negsf2(fp_t a) { return fromRep(toRep(a) ^ signBit); }
H A Dsubdf3.c18 return __adddf3(a, fromRep(toRep(b) ^ signBit));
H A Dsubsf3.c18 return __addsf3(a, fromRep(toRep(b) ^ signBit));
H A Dsubtf3.c21 return __addtf3(a, fromRep(toRep(b) ^ signBit));
H A Ddivdf3.c23 const unsigned int aExponent = toRep(a) >> significandBits & maxExponent;
24 const unsigned int bExponent = toRep(b) >> significandBits & maxExponent;
25 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit;
27 rep_t aSignificand = toRep(a) & significandMask;
28 rep_t bSignificand = toRep(b) & significandMask;
35 const rep_t aAbs = toRep(a) & absMask;
36 const rep_t bAbs = toRep(b) & absMask;
40 return fromRep(toRep(a) | quietBit);
43 return fromRep(toRep(
[all...]
H A Ddivtf3.c24 const unsigned int aExponent = toRep(a) >> significandBits & maxExponent;
25 const unsigned int bExponent = toRep(b) >> significandBits & maxExponent;
26 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit;
28 rep_t aSignificand = toRep(a) & significandMask;
29 rep_t bSignificand = toRep(b) & significandMask;
36 const rep_t aAbs = toRep(a) & absMask;
37 const rep_t bAbs = toRep(b) & absMask;
41 return fromRep(toRep(a) | quietBit);
44 return fromRep(toRep(
[all...]
H A Dcomparedf2.c46 const srep_t aInt = toRep(a);
47 const srep_t bInt = toRep(b);
101 const srep_t aInt = toRep(a);
102 const srep_t bInt = toRep(b);
131 const rep_t aAbs = toRep(a) & absMask;
132 const rep_t bAbs = toRep(b) & absMask;
H A Dcomparesf2.c46 const srep_t aInt = toRep(a);
47 const srep_t bInt = toRep(b);
101 const srep_t aInt = toRep(a);
102 const srep_t bInt = toRep(b);
131 const rep_t aAbs = toRep(a) & absMask;
132 const rep_t bAbs = toRep(b) & absMask;
H A Dfp_fixint_impl.inc20 const rep_t aRep = toRep(a);
H A Dfp_fixuint_impl.inc18 const rep_t aRep = toRep(a);
H A Dfp_lib.h218 static __inline rep_t toRep(fp_t x) { function
267 rep_t rep = toRep(x);

Completed in 146 milliseconds