Home
last modified time | relevance | path

Searched refs:matmat (Results 1 – 2 of 2) sorted by relevance

/petsc/src/mat/impls/shell/
H A Dshell.c438 MatShellMatFunctionList matmat; in MatDestroy_Shell() local
460 matmat = shell->matmat; in MatDestroy_Shell()
461 while (matmat) { in MatDestroy_Shell()
462 MatShellMatFunctionList next = matmat->next; in MatDestroy_Shell()
464 PetscCall(PetscObjectComposeFunction((PetscObject)mat, matmat->composedname, NULL)); in MatDestroy_Shell()
465 PetscCall(PetscFree(matmat->composedname)); in MatDestroy_Shell()
466 PetscCall(PetscFree(matmat->resultname)); in MatDestroy_Shell()
467 PetscCall(PetscFree(matmat)); in MatDestroy_Shell()
468 matmat = next; in MatDestroy_Shell()
679 MatShellMatFunctionList matmat; in MatProductSymbolic_Shell_X() local
[all …]
H A Dshell.h56 MatShellMatFunctionList matmat; member