Home
last modified time | relevance | path

Searched refs:bInt (Results 1 – 3 of 3) sorted by relevance

/NextBSD/contrib/compiler-rt/lib/builtins/
HDcomparetf2.c54 const srep_t bInt = toRep(b); in __letf2() local
56 const rep_t bAbs = bInt & absMask; in __letf2()
66 if ((aInt & bInt) >= 0) { in __letf2()
67 if (aInt < bInt) return LE_LESS; in __letf2()
68 else if (aInt == bInt) return LE_EQUAL; in __letf2()
76 if (aInt > bInt) return LE_LESS; in __letf2()
77 else if (aInt == bInt) return LE_EQUAL; in __letf2()
92 const srep_t bInt = toRep(b); in __getf2() local
94 const rep_t bAbs = bInt & absMask; in __getf2()
98 if ((aInt & bInt) >= 0) { in __getf2()
[all …]
HDcomparesf2.c54 const srep_t bInt = toRep(b); in __lesf2() local
56 const rep_t bAbs = bInt & absMask; in __lesf2()
66 if ((aInt & bInt) >= 0) { in __lesf2()
67 if (aInt < bInt) return LE_LESS; in __lesf2()
68 else if (aInt == bInt) return LE_EQUAL; in __lesf2()
77 if (aInt > bInt) return LE_LESS; in __lesf2()
78 else if (aInt == bInt) return LE_EQUAL; in __lesf2()
94 const srep_t bInt = toRep(b); in __gesf2() local
96 const rep_t bAbs = bInt & absMask; in __gesf2()
100 if ((aInt & bInt) >= 0) { in __gesf2()
[all …]
HDcomparedf2.c54 const srep_t bInt = toRep(b); in __ledf2() local
56 const rep_t bAbs = bInt & absMask; in __ledf2()
66 if ((aInt & bInt) >= 0) { in __ledf2()
67 if (aInt < bInt) return LE_LESS; in __ledf2()
68 else if (aInt == bInt) return LE_EQUAL; in __ledf2()
77 if (aInt > bInt) return LE_LESS; in __ledf2()
78 else if (aInt == bInt) return LE_EQUAL; in __ledf2()
94 const srep_t bInt = toRep(b); in __gedf2() local
96 const rep_t bAbs = bInt & absMask; in __gedf2()
100 if ((aInt & bInt) >= 0) { in __gedf2()
[all …]