Lines Matching defs:rhssmall

859 	int32_t lhssmall, rhssmall;
862 isl_sioimath_decode_small(rhs, &rhssmall)) {
863 isl_sioimath_set_small(dst, lhssmall / rhssmall);
906 int32_t lhssmall, rhssmall;
911 isl_sioimath_decode_small(rhs, &rhssmall)) {
912 if ((lhssmall >= 0) && (rhssmall >= 0))
913 q = ((int64_t) lhssmall + (int64_t) rhssmall - 1) /
914 rhssmall;
915 else if ((lhssmall < 0) && (rhssmall < 0))
916 q = ((int64_t) lhssmall + (int64_t) rhssmall + 1) /
917 rhssmall;
919 q = lhssmall / rhssmall;
961 int32_t lhssmall, rhssmall;
965 isl_sioimath_decode_small(rhs, &rhssmall)) {
966 if ((lhssmall < 0) && (rhssmall >= 0))
967 q = ((int64_t) lhssmall - ((int64_t) rhssmall - 1)) /
968 rhssmall;
969 else if ((lhssmall >= 0) && (rhssmall < 0))
970 q = ((int64_t) lhssmall - ((int64_t) rhssmall + 1)) /
971 rhssmall;
973 q = lhssmall / rhssmall;
1016 int64_t lhssmall, rhssmall;
1021 rhssmall = isl_sioimath_get_small(rhs);
1022 r = (rhssmall + lhssmall % rhssmall) % rhssmall;
1058 int32_t lhssmall, rhssmall;
1061 isl_sioimath_decode_small(rhs, &rhssmall))
1062 return (lhssmall > rhssmall) - (lhssmall < rhssmall);
1064 if (isl_sioimath_decode_small(rhs, &rhssmall))
1066 isl_sioimath_bigarg_src(lhs, &lhsscratch), rhssmall);
1096 int32_t lhssmall, rhssmall;
1099 isl_sioimath_decode_small(rhs, &rhssmall)) {
1101 rhssmall = labs(rhssmall);
1102 return (lhssmall > rhssmall) - (lhssmall < rhssmall);
1118 int32_t lhssmall, rhssmall;
1126 isl_sioimath_decode_small(rhs, &rhssmall))
1127 return lhssmall % rhssmall == 0;
1129 if (isl_sioimath_decode_small(rhs, &rhssmall))
1131 isl_sioimath_bigarg_src(lhs, &lhsscratch), rhssmall);