Lines Matching refs:aInt
53 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()
78 else if (aInt == bInt) return LE_EQUAL; 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()
107 else if (aInt == bInt) return GE_EQUAL; in __gedf2()
110 if (aInt > bInt) return GE_LESS; in __gedf2()
111 else if (aInt == bInt) return GE_EQUAL; in __gedf2()