reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/polly/lib/External/isl/isl_int_sioimath.h
  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;