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()
93 const srep_t aInt = toRep(a); in __gedf2() local
95 const rep_t aAbs = aInt & absMask; in __gedf2()
100 if ((aInt & bInt) >= 0) { in __gedf2()
101 if (aInt < bInt) return GE_LESS; in __gedf2()
102 else if (aInt == bInt) return GE_EQUAL; in __gedf2()
105 if (aInt > bInt) return GE_LESS; in __gedf2()
106 else if (aInt == bInt) return GE_EQUAL; in __gedf2()