reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1150 if (!ls) 1152 if (n == 0 && !isl_local_space_is_named_or_nested(ls, type)) 1153 return ls; 1155 ctx = isl_local_space_get_ctx(ls); 1156 if (first > isl_local_space_dim(ls, type)) 1158 return isl_local_space_free(ls)); 1160 ls = isl_local_space_cow(ls); 1160 ls = isl_local_space_cow(ls); 1161 if (!ls) 1165 ls->div = isl_mat_insert_zero_rows(ls->div, first, n); 1165 ls->div = isl_mat_insert_zero_rows(ls->div, first, n); 1167 ls->dim = isl_space_insert_dims(ls->dim, type, first, n); 1167 ls->dim = isl_space_insert_dims(ls->dim, type, first, n); 1168 if (!ls->dim) 1169 return isl_local_space_free(ls); 1172 first += 1 + isl_local_space_offset(ls, type); 1173 ls->div = isl_mat_insert_zero_cols(ls->div, first, n); 1173 ls->div = isl_mat_insert_zero_cols(ls->div, first, n); 1174 if (!ls->div) 1175 return isl_local_space_free(ls); 1177 return ls;