Home
last modified time | relevance | path

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

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