Searched refs:bAbs (Results 1 - 8 of 8) sorted by relevance

/freebsd-11.0-release/contrib/compiler-rt/lib/builtins/
H A Dcomparedf2.c56 const rep_t bAbs = bInt & absMask; local
59 if (aAbs > infRep || bAbs > infRep) return LE_UNORDERED;
62 if ((aAbs | bAbs) == 0) return LE_EQUAL;
101 const rep_t bAbs = bInt & absMask; local
103 if (aAbs > infRep || bAbs > infRep) return GE_UNORDERED;
104 if ((aAbs | bAbs) == 0) return GE_EQUAL;
121 const rep_t bAbs = toRep(b) & absMask; local
122 return aAbs > infRep || bAbs > infRep;
H A Dcomparesf2.c56 const rep_t bAbs = bInt & absMask; local
59 if (aAbs > infRep || bAbs > infRep) return LE_UNORDERED;
62 if ((aAbs | bAbs) == 0) return LE_EQUAL;
101 const rep_t bAbs = bInt & absMask; local
103 if (aAbs > infRep || bAbs > infRep) return GE_UNORDERED;
104 if ((aAbs | bAbs) == 0) return GE_EQUAL;
121 const rep_t bAbs = toRep(b) & absMask; local
122 return aAbs > infRep || bAbs > infRep;
H A Dcomparetf2.c56 const rep_t bAbs = bInt & absMask; local
59 if (aAbs > infRep || bAbs > infRep) return LE_UNORDERED;
62 if ((aAbs | bAbs) == 0) return LE_EQUAL;
99 const rep_t bAbs = bInt & absMask; local
101 if (aAbs > infRep || bAbs > infRep) return GE_UNORDERED;
102 if ((aAbs | bAbs) == 0) return GE_EQUAL;
116 const rep_t bAbs = toRep(b) & absMask; local
117 return aAbs > infRep || bAbs > infRep;
H A Ddivdf3.c39 const rep_t bAbs = toRep(b) & absMask; local
44 if (bAbs > infRep) return fromRep(toRep(b) | quietBit);
48 if (bAbs == infRep) return fromRep(qnanRep);
54 if (bAbs == infRep) return fromRep(quotientSign);
58 if (!bAbs) return fromRep(qnanRep);
63 if (!bAbs) return fromRep(infRep | quotientSign);
69 if (bAbs < implicitBit) scale -= normalize(&bSignificand);
H A Ddivsf3.c39 const rep_t bAbs = toRep(b) & absMask; local
44 if (bAbs > infRep) return fromRep(toRep(b) | quietBit);
48 if (bAbs == infRep) return fromRep(qnanRep);
54 if (bAbs == infRep) return fromRep(quotientSign);
58 if (!bAbs) return fromRep(qnanRep);
63 if (!bAbs) return fromRep(infRep | quotientSign);
69 if (bAbs < implicitBit) scale -= normalize(&bSignificand);
H A Dfp_mul_impl.inc30 const rep_t bAbs = toRep(b) & absMask;
35 if (bAbs > infRep) return fromRep(toRep(b) | quietBit);
39 if (bAbs) return fromRep(aAbs | productSign);
44 if (bAbs == infRep) {
46 if (aAbs) return fromRep(bAbs | productSign);
54 if (!bAbs) return fromRep(productSign);
60 if (bAbs < implicitBit) scale += normalize(&bSignificand);
H A Ddivtf3.c37 const rep_t bAbs = toRep(b) & absMask; local
42 if (bAbs > infRep) return fromRep(toRep(b) | quietBit);
46 if (bAbs == infRep) return fromRep(qnanRep);
52 if (bAbs == infRep) return fromRep(quotientSign);
56 if (!bAbs) return fromRep(qnanRep);
61 if (!bAbs) return fromRep(infRep | quotientSign);
67 if (bAbs < implicitBit) scale -= normalize(&bSignificand);
H A Dfp_add_impl.inc21 const rep_t bAbs = bRep & absMask;
25 bAbs - REP_C(1) >= infRep - REP_C(1)) {
29 if (bAbs > infRep) return fromRep(toRep(b) | quietBit);
39 if (bAbs == infRep) return b;
44 if (!bAbs) return fromRep(toRep(a) & toRep(b));
49 if (!bAbs) return a;
53 if (bAbs > aAbs) {

Completed in 50 milliseconds