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

References

tools/polly/lib/External/isl/isl_mat.c
  152 	mat = isl_alloc_type(ctx, struct isl_mat);
  153 	if (!mat)
  155 	mat->row = isl_alloc_array(ctx, isl_int *, n_row);
  156 	if (n_row && !mat->row)
  159 		mat->row[i] = row[first_row+i] + first_col;
  160 	mat->ctx = ctx;
  162 	mat->ref = 1;
  163 	mat->n_row = n_row;
  164 	mat->n_col = n_col;
  165 	mat->block = isl_blk_empty();
  166 	mat->flags = ISL_MAT_BORROWED;
  167 	return mat;
  169 	free(mat);