Home
last modified time | relevance | path

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

/petsc/src/sys/fileio/
H A Dsysio.c566 int iwhence = 0; in PetscBinarySeek() local
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()
574 *offset = lseek(fd, off, iwhence); in PetscBinarySeek()
576 *offset = _lseek(fd, (long)off, iwhence); in PetscBinarySeek()