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

References

tools/polly/lib/External/isl/isl_output.c
  833 	if (!p || !div)
  834 		return isl_printer_free(p);
  836 	c = p->output_format == ISL_FORMAT_C;
  837 	p = isl_printer_print_str(p, c ? "floord(" : "floor((");
  837 	p = isl_printer_print_str(p, c ? "floord(" : "floor((");
  838 	p = print_affine_of_len(dim, div, p,
  838 	p = print_affine_of_len(dim, div, p,
  840 	p = isl_printer_print_str(p, c ? ", " : ")/");
  840 	p = isl_printer_print_str(p, c ? ", " : ")/");
  841 	p = isl_printer_print_isl_int(p, div->row[pos][0]);
  841 	p = isl_printer_print_isl_int(p, div->row[pos][0]);
  842 	p = isl_printer_print_str(p, ")");
  842 	p = isl_printer_print_str(p, ")");
  843 	return p;