Lines Matching refs:vx
16 PetscViewer vx, vl; in main() local
29 PetscCall(PetscViewerBinaryOpen(PETSC_COMM_WORLD, "testfile", FILE_MODE_WRITE, &vx)); in main()
30 PetscCall(ISView(isx[0], vx)); in main()
31 PetscCall(PetscViewerDestroy(&vx)); in main()
41 PetscCall(PetscViewerBinaryOpen(PETSC_COMM_WORLD, "testfile", FILE_MODE_APPEND, &vx)); in main()
42 PetscCall(ISView(isx[1], vx)); in main()
43 PetscCall(ISView(isx[2], vx)); in main()
44 PetscCall(PetscViewerDestroy(&vx)); in main()
68 PetscCall(PetscViewerBinaryOpen(PETSC_COMM_WORLD, "testfile_noheader", FILE_MODE_WRITE, &vx)); in main()
69 PetscCall(PetscViewerBinarySetSkipHeader(vx, PETSC_TRUE)); in main()
70 for (i = 0; i < 3; i++) PetscCall(ISView(isx[i], vx)); in main()
71 PetscCall(PetscViewerDestroy(&vx)); in main()
90 PetscCall(PetscViewerBinaryOpen(PETSC_COMM_WORLD, filename, FILE_MODE_WRITE, &vx)); in main()
97 PetscCall(ISView(isx[i], vx)); in main()
100 PetscCall(PetscViewerDestroy(&vx)); in main()