Lines Matching defs:lhssmall
859 int32_t lhssmall, rhssmall;
861 if (isl_sioimath_decode_small(lhs, &lhssmall) &&
863 isl_sioimath_set_small(dst, lhssmall / rhssmall);
880 int32_t lhssmall;
883 lhssmall = isl_sioimath_get_small(lhs);
884 isl_sioimath_set_small(dst, lhssmall / (int32_t) rhs);
906 int32_t lhssmall, rhssmall;
910 if (isl_sioimath_decode_small(lhs, &lhssmall) &&
912 if ((lhssmall >= 0) && (rhssmall >= 0))
913 q = ((int64_t) lhssmall + (int64_t) rhssmall - 1) /
915 else if ((lhssmall < 0) && (rhssmall < 0))
916 q = ((int64_t) lhssmall + (int64_t) rhssmall + 1) /
919 q = lhssmall / rhssmall;
937 int32_t lhssmall, q;
939 if (isl_sioimath_decode_small(lhs, &lhssmall) && (rhs <= INT32_MAX)) {
940 if (lhssmall >= 0)
941 q = ((int64_t) lhssmall + ((int64_t) rhs - 1)) /
944 q = lhssmall / (int32_t) rhs;
961 int32_t lhssmall, rhssmall;
964 if (isl_sioimath_decode_small(lhs, &lhssmall) &&
966 if ((lhssmall < 0) && (rhssmall >= 0))
967 q = ((int64_t) lhssmall - ((int64_t) rhssmall - 1)) /
969 else if ((lhssmall >= 0) && (rhssmall < 0))
970 q = ((int64_t) lhssmall - ((int64_t) rhssmall + 1)) /
973 q = lhssmall / rhssmall;
991 int32_t lhssmall, q;
993 if (isl_sioimath_decode_small(lhs, &lhssmall) && (rhs <= INT32_MAX)) {
994 if (lhssmall >= 0)
995 q = (uint32_t) lhssmall / rhs;
997 q = ((int64_t) lhssmall - ((int64_t) rhs - 1)) /
1016 int64_t lhssmall, rhssmall;
1020 lhssmall = isl_sioimath_get_small(lhs);
1022 r = (rhssmall + lhssmall % rhssmall) % rhssmall;
1058 int32_t lhssmall, rhssmall;
1060 if (isl_sioimath_decode_small(lhs, &lhssmall) &&
1062 return (lhssmall > rhssmall) - (lhssmall < rhssmall);
1068 if (isl_sioimath_decode_small(lhs, &lhssmall))
1070 isl_sioimath_bigarg_src(rhs, &rhsscratch), lhssmall);
1080 int32_t lhssmall;
1082 if (isl_sioimath_decode_small(lhs, &lhssmall))
1083 return (lhssmall > rhs) - (lhssmall < rhs);
1096 int32_t lhssmall, rhssmall;
1098 if (isl_sioimath_decode_small(lhs, &lhssmall) &&
1100 lhssmall = labs(lhssmall);
1102 return (lhssmall > rhssmall) - (lhssmall < rhssmall);
1118 int32_t lhssmall, rhssmall;
1125 if (isl_sioimath_decode_small(lhs, &lhssmall) &&
1127 return lhssmall % rhssmall == 0;