Searched refs:bSignificand (Results 1 - 5 of 5) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Ddivsf3.c28 rep_t bSignificand = toRep(b) & significandMask; local
76 scale -= normalize(&bSignificand);
83 bSignificand |= implicitBit;
91 uint32_t q31b = bSignificand << 8;
143 residual = (aSignificand << 24) - quotient * bSignificand;
147 residual = (aSignificand << 23) - quotient * bSignificand;
160 const bool round = (residual << 1) > bSignificand;
176 const bool round = (residual << 1) > bSignificand;
H A Ddivdf3.c28 rep_t bSignificand = toRep(b) & significandMask; local
76 scale -= normalize(&bSignificand);
83 bSignificand |= implicitBit;
90 const uint32_t q31b = bSignificand >> 21;
115 const uint32_t q63blo = bSignificand << 11;
158 residual = (aSignificand << 53) - quotient * bSignificand;
162 residual = (aSignificand << 52) - quotient * bSignificand;
175 const bool round = (residual << 1) > bSignificand;
191 const bool round = (residual << 1) > bSignificand;
H A Ddivtf3.c29 rep_t bSignificand = toRep(b) & significandMask; local
77 scale -= normalize(&bSignificand);
84 bSignificand |= implicitBit;
91 const uint64_t q63b = bSignificand >> 49;
120 const uint64_t q127blo = bSignificand << 15;
177 wideMultiply(quotient, bSignificand, &dummy, &qb);
182 wideMultiply(quotient, bSignificand, &dummy, &qb);
194 const bool round = (residual << 1) > bSignificand;
208 const bool round = (residual << 1) >= bSignificand;
H A Dfp_add_impl.inc71 rep_t bSignificand = bRep & significandMask;
77 bExponent = normalize(&bSignificand);
90 bSignificand = (bSignificand | implicitBit) << 3;
97 const bool sticky = (bSignificand << (typeWidth - align)) != 0;
98 bSignificand = bSignificand >> align | sticky;
100 bSignificand = 1; // Set the sticky bit. b is known to be non-zero.
104 aSignificand -= bSignificand;
117 aSignificand += bSignificand;
[all...]
H A Dfp_mul_impl.inc22 rep_t bSignificand = toRep(b) & significandMask;
70 scale += normalize(&bSignificand);
77 bSignificand |= implicitBit;
82 wideMultiply(aSignificand, bSignificand << exponentBits, &productHi,

Completed in 113 milliseconds