Home
last modified time | relevance | path

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

/petsc/src/sys/fileio/
H A Dsysio.c564 PetscErrorCode PetscBinarySeek(int fd, off_t off, PetscBinarySeekType whence, off_t *offset) in PetscBinarySeek() argument
569 if (whence == PETSC_BINARY_SEEK_SET) iwhence = SEEK_SET; in PetscBinarySeek()
570 else if (whence == PETSC_BINARY_SEEK_CUR) iwhence = SEEK_CUR; in PetscBinarySeek()
571 else if (whence == PETSC_BINARY_SEEK_END) iwhence = SEEK_END; in PetscBinarySeek()
722 …BinarySynchronizedSeek(MPI_Comm comm, int fd, off_t off, PetscBinarySeekType whence, off_t *offset) in PetscBinarySynchronizedSeek() argument
728 if (rank == 0) PetscCall(PetscBinarySeek(fd, off, whence, offset)); in PetscBinarySynchronizedSeek()