reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1775 mat = isl_mat_alloc(top->ctx, top->n_row + bot->n_row, top->n_col); 1776 if (!mat) 1778 isl_mat_sub_copy(mat->ctx, mat->row, top->row, top->n_row, 1778 isl_mat_sub_copy(mat->ctx, mat->row, top->row, top->n_row, 1779 0, 0, mat->n_col); 1780 isl_mat_sub_copy(mat->ctx, mat->row + top->n_row, bot->row, bot->n_row, 1780 isl_mat_sub_copy(mat->ctx, mat->row + top->n_row, bot->row, bot->n_row, 1781 0, 0, mat->n_col); 1784 return mat;