Searched refs:iresult (Results 1 – 1 of 1) sorted by relevance
77 #define addoverflow() if ((i1^i2) >= 0 && (iresult^i1) < 0) goto overflow78 #define suboverflow() if ((i1^i2) < 0 && (iresult^i2) >= 0) goto overflow81 ((i2 != 0 && iresult/i2 != i1) || \1248 register INT iresult; in arithmetic() local1275 iresult = i1 + i2; in arithmetic()1293 iresult = i1 - i2; in arithmetic()1301 iresult = i1 * i2; in arithmetic()1322 iresult = i1 % i2; in arithmetic()1333 return (type == FINT ? intnode(iresult) : realnode(r1)); in arithmetic()