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

/freebsd-10.2-release/contrib/compiler-rt/lib/
H A Dcomparedf2.c55 const rep_t bAbs = bInt & absMask; local
58 if (aAbs > infRep || bAbs > infRep) return LE_UNORDERED;
61 if ((aAbs | bAbs) == 0) return LE_EQUAL;
94 const rep_t bAbs = bInt & absMask; local
96 if (aAbs > infRep || bAbs > infRep) return GE_UNORDERED;
97 if ((aAbs | bAbs) == 0) return GE_EQUAL;
111 const rep_t bAbs = toRep(b) & absMask; local
112 return aAbs > infRep || bAbs > infRep;
H A Dcomparesf2.c55 const rep_t bAbs = bInt & absMask; local
58 if (aAbs > infRep || bAbs > infRep) return LE_UNORDERED;
61 if ((aAbs | bAbs) == 0) return LE_EQUAL;
94 const rep_t bAbs = bInt & absMask; local
96 if (aAbs > infRep || bAbs > infRep) return GE_UNORDERED;
97 if ((aAbs | bAbs) == 0) return GE_EQUAL;
111 const rep_t bAbs = toRep(b) & absMask; local
112 return aAbs > infRep || bAbs > infRep;
H A Dmuldf3.c35 const rep_t bAbs = toRep(b) & absMask; local
40 if (bAbs > infRep) return fromRep(toRep(b) | quietBit);
44 if (bAbs) return fromRep(aAbs | productSign);
49 if (bAbs == infRep) {
51 if (aAbs) return fromRep(bAbs | productSign);
59 if (!bAbs) return fromRep(productSign);
65 if (bAbs < implicitBit) scale += normalize(&bSignificand);
H A Dmulsf3.c35 const rep_t bAbs = toRep(b) & absMask; local
40 if (bAbs > infRep) return fromRep(toRep(b) | quietBit);
44 if (bAbs) return fromRep(aAbs | productSign);
49 if (bAbs == infRep) {
51 if (aAbs) return fromRep(bAbs | productSign);
59 if (!bAbs) return fromRep(productSign);
65 if (bAbs < implicitBit) scale += normalize(&bSignificand);
H A Dadddf3.c26 const rep_t bAbs = bRep & absMask; local
29 if (aAbs - 1U >= infRep - 1U || bAbs - 1U >= infRep - 1U) {
34 if (bAbs > infRep) return fromRep(toRep(b) | quietBit);
44 if (bAbs == infRep) return b;
49 if (!bAbs) return fromRep(toRep(a) & toRep(b));
54 if (!bAbs) return a;
58 if (bAbs > aAbs) {
H A Daddsf3.c25 const rep_t bAbs = bRep & absMask; local
28 if (aAbs - 1U >= infRep - 1U || bAbs - 1U >= infRep - 1U) {
33 if (bAbs > infRep) return fromRep(toRep(b) | quietBit);
43 if (bAbs == infRep) return b;
48 if (!bAbs) return fromRep(toRep(a) & toRep(b));
53 if (!bAbs) return a;
57 if (bAbs > aAbs) {
H A Ddivdf3.c38 const rep_t bAbs = toRep(b) & absMask; local
43 if (bAbs > infRep) return fromRep(toRep(b) | quietBit);
47 if (bAbs == infRep) return fromRep(qnanRep);
53 if (bAbs == infRep) return fromRep(quotientSign);
57 if (!bAbs) return fromRep(qnanRep);
62 if (!bAbs) return fromRep(infRep | quotientSign);
68 if (bAbs < implicitBit) scale -= normalize(&bSignificand);
H A Ddivsf3.c38 const rep_t bAbs = toRep(b) & absMask; local
43 if (bAbs > infRep) return fromRep(toRep(b) | quietBit);
47 if (bAbs == infRep) return fromRep(qnanRep);
53 if (bAbs == infRep) return fromRep(quotientSign);
57 if (!bAbs) return fromRep(qnanRep);
62 if (!bAbs) return fromRep(infRep | quotientSign);
68 if (bAbs < implicitBit) scale -= normalize(&bSignificand);

Completed in 53 milliseconds