Lines Matching refs:off
564 PetscErrorCode PetscBinarySeek(int fd, off_t off, PetscBinarySeekType whence, off_t *offset) in PetscBinarySeek() argument
574 *offset = lseek(fd, off, iwhence); in PetscBinarySeek()
576 *offset = _lseek(fd, (long)off, iwhence); in PetscBinarySeek()
722 PetscErrorCode PetscBinarySynchronizedSeek(MPI_Comm comm, int fd, off_t off, PetscBinarySeekType wh… in PetscBinarySynchronizedSeek() argument
728 if (rank == 0) PetscCall(PetscBinarySeek(fd, off, whence, offset)); in PetscBinarySynchronizedSeek()
811 PetscErrorCode MPIU_File_write_at(MPI_File fd, MPI_Offset off, void *data, PetscMPIInt cnt, MPI_Dat… in MPIU_File_write_at() argument
818 PetscCallMPI(MPI_File_write_at(fd, off, data, cnt, dtype, status)); in MPIU_File_write_at()
823 PetscErrorCode MPIU_File_read_at(MPI_File fd, MPI_Offset off, void *data, PetscMPIInt cnt, MPI_Data… in MPIU_File_read_at() argument
829 PetscCallMPI(MPI_File_read_at(fd, off, data, cnt, dtype, status)); in MPIU_File_read_at()
834 PetscErrorCode MPIU_File_write_at_all(MPI_File fd, MPI_Offset off, void *data, PetscMPIInt cnt, MPI… in MPIU_File_write_at_all() argument
841 PetscCallMPI(MPI_File_write_at_all(fd, off, data, cnt, dtype, status)); in MPIU_File_write_at_all()
846 PetscErrorCode MPIU_File_read_at_all(MPI_File fd, MPI_Offset off, void *data, PetscMPIInt cnt, MPI_… in MPIU_File_read_at_all() argument
852 PetscCallMPI(MPI_File_read_at_all(fd, off, data, cnt, dtype, status)); in MPIU_File_read_at_all()