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
  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;