Home
last modified time | relevance | path

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

/freebsd-9-stable/contrib/compiler-rt/lib/
Dcomparedf2.c52 const srep_t aInt = toRep(a); in __ledf2() local
54 const rep_t aAbs = aInt & absMask; in __ledf2()
65 if ((aInt & bInt) >= 0) { in __ledf2()
66 if (aInt < bInt) return LE_LESS; in __ledf2()
67 else if (aInt == bInt) return LE_EQUAL; in __ledf2()
76 if (aInt > bInt) return LE_LESS; in __ledf2()
77 else if (aInt == bInt) return LE_EQUAL; in __ledf2()
91 const srep_t aInt = toRep(a); in __gedf2() local
93 const rep_t aAbs = aInt & absMask; in __gedf2()
98 if ((aInt & bInt) >= 0) { in __gedf2()
[all …]
Dcomparesf2.c52 const srep_t aInt = toRep(a); in __lesf2() local
54 const rep_t aAbs = aInt & absMask; in __lesf2()
65 if ((aInt & bInt) >= 0) { in __lesf2()
66 if (aInt < bInt) return LE_LESS; in __lesf2()
67 else if (aInt == bInt) return LE_EQUAL; in __lesf2()
76 if (aInt > bInt) return LE_LESS; in __lesf2()
77 else if (aInt == bInt) return LE_EQUAL; in __lesf2()
91 const srep_t aInt = toRep(a); in __gesf2() local
93 const rep_t aAbs = aInt & absMask; in __gesf2()
98 if ((aInt & bInt) >= 0) { in __gesf2()
[all …]