Lines Matching full:malloc

68   xxt_handle       = (xxt_ADT)malloc(sizeof(struct xxt_CDT));  in XXT_new()
91 xxt_handle->info = (xxt_info *)malloc(sizeof(xxt_info)); in XXT_factor()
209 col_sz = (PetscInt *)malloc(m * sizeof(PetscInt)); in xxt_generate()
210 col_indices = (PetscInt *)malloc((2 * m + 1) * sizeof(PetscInt)); in xxt_generate()
211 col_vals = (PetscScalar **)malloc(m * sizeof(PetscScalar *)); in xxt_generate()
220 stages = (PetscInt *)malloc((level + 1) * sizeof(PetscInt)); in xxt_generate()
221 segs = (PetscInt *)malloc((level + 1) * sizeof(PetscInt)); in xxt_generate()
228 u = (PetscScalar *)malloc(n * sizeof(PetscScalar)); in xxt_generate()
229 z = (PetscScalar *)malloc(n * sizeof(PetscScalar)); in xxt_generate()
230 v = (PetscScalar *)malloc(a_m * sizeof(PetscScalar)); in xxt_generate()
231 uu = (PetscScalar *)malloc(m * sizeof(PetscScalar)); in xxt_generate()
232 w = (PetscScalar *)malloc(m * sizeof(PetscScalar)); in xxt_generate()
240 x = (PetscScalar *)malloc(xxt_max_nnz * sizeof(PetscScalar)); in xxt_generate()
356 x_ptr = (PetscScalar *)malloc(xxt_max_nnz * sizeof(PetscScalar)); in xxt_generate()
387 xxt_handle->info->solve_uu = (PetscScalar *)malloc(m * sizeof(PetscScalar)); in xxt_generate()
388 xxt_handle->info->solve_w = (PetscScalar *)malloc(m * sizeof(PetscScalar)); in xxt_generate()
481 dir = (PetscInt *)malloc(sizeof(PetscInt) * (level + 1)); in det_separators()
482 nsep = (PetscInt *)malloc(sizeof(PetscInt) * (level + 1)); in det_separators()
483 lnsep = (PetscInt *)malloc(sizeof(PetscInt) * (level + 1)); in det_separators()
484 fo = (PetscInt *)malloc(sizeof(PetscInt) * (n + 1)); in det_separators()
485 used = (PetscInt *)malloc(sizeof(PetscInt) * n); in det_separators()
493 lhs = (PetscScalar *)malloc(sizeof(PetscScalar) * m); in det_separators()
494 rhs = (PetscScalar *)malloc(sizeof(PetscScalar) * m); in det_separators()
716 mv_info *mvi = (mv_info *)malloc(sizeof(mv_info)); in set_mvi()
722 mvi->local2global = (PetscInt *)malloc((m + 1) * sizeof(PetscInt)); in set_mvi()