Lines Matching refs:product
5 DM_Product *product = (DM_Product *)dm->data; in DMDestroy_Product() local
9 for (d = 0; d < DMPRODUCT_MAX_DIM; ++d) PetscCall(DMDestroy(&product->dm[d])); in DMDestroy_Product()
10 PetscCall(PetscFree(product)); in DMDestroy_Product()
16 DM_Product *product = (DM_Product *)dm->data; in DMView_Product() local
21 if (product->dm[d]) { in DMView_Product()
25 PetscCall(DMView(product->dm[d], viewer)); in DMView_Product()
65 DM_Product *product; in DMCreate_Product() local
70 PetscCall(PetscNew(&product)); in DMCreate_Product()
71 dm->data = product; in DMCreate_Product()
73 for (d = 0; d < DMPRODUCT_MAX_DIM; ++d) product->dm[d] = NULL; in DMCreate_Product()
74 for (d = 0; d < DMPRODUCT_MAX_DIM; ++d) product->dim[d] = -1; in DMCreate_Product()