Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/compiler-rt/lib/builtins/
H A Dcomparetf2.c53 const srep_t aInt = toRep(a); in __letf2() local
55 const rep_t aAbs = aInt & 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()
96 const srep_t aInt = toRep(a); in __getf2() local
98 const rep_t aAbs = aInt & absMask; in __getf2()
103 if ((aInt & bInt) >= 0) { in __getf2()
104 if (aInt < bInt) return GE_LESS; in __getf2()
[all …]
H A Dcomparedf2.c53 const srep_t aInt = toRep(a); in __ledf2() local
55 const rep_t aAbs = aInt & 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()
98 const srep_t aInt = toRep(a); in __gedf2() local
100 const rep_t aAbs = aInt & absMask; in __gedf2()
105 if ((aInt & bInt) >= 0) { in __gedf2()
106 if (aInt < bInt) return GE_LESS; in __gedf2()
[all …]
H A Dcomparesf2.c53 const srep_t aInt = toRep(a); in __lesf2() local
55 const rep_t aAbs = aInt & 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()
98 const srep_t aInt = toRep(a); in __gesf2() local
100 const rep_t aAbs = aInt & absMask; in __gesf2()
105 if ((aInt & bInt) >= 0) { in __gesf2()
106 if (aInt < bInt) return GE_LESS; in __gesf2()
[all …]