HomeSort by relevance Sort by last modified time
    Searched refs:bAbs (Results 1 - 6 of 6) sorted by null

  /external/compiler-rt/lib/builtins/
comparetf2.c 56 const rep_t bAbs = bInt & absMask;
59 if (aAbs > infRep || bAbs > infRep) return LE_UNORDERED;
62 if ((aAbs | bAbs) == 0) return LE_EQUAL;
94 const rep_t bAbs = bInt & absMask;
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;
112 return aAbs > infRep || bAbs > infRep;
comparedf2.c 56 const rep_t bAbs = bInt & absMask;
59 if (aAbs > infRep || bAbs > infRep) return LE_UNORDERED;
62 if ((aAbs | bAbs) == 0) return LE_EQUAL;
96 const rep_t bAbs = bInt & absMask;
98 if (aAbs > infRep || bAbs > infRep) return GE_UNORDERED;
99 if ((aAbs | bAbs) == 0) return GE_EQUAL;
116 const rep_t bAbs = toRep(b) & absMask;
117 return aAbs > infRep || bAbs > infRep;
comparesf2.c 56 const rep_t bAbs = bInt & absMask;
59 if (aAbs > infRep || bAbs > infRep) return LE_UNORDERED;
62 if ((aAbs | bAbs) == 0) return LE_EQUAL;
96 const rep_t bAbs = bInt & absMask;
98 if (aAbs > infRep || bAbs > infRep) return GE_UNORDERED;
99 if ((aAbs | bAbs) == 0) return GE_EQUAL;
116 const rep_t bAbs = toRep(b) & absMask;
117 return aAbs > infRep || bAbs > infRep;
divdf3.c 39 const rep_t bAbs = toRep(b) & absMask;
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);
divsf3.c 39 const rep_t bAbs = toRep(b) & absMask;
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);
divtf3.c 37 const rep_t bAbs = toRep(b) & absMask;
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);

Completed in 153 milliseconds