Searched refs:iwhence (Results 1 – 1 of 1) sorted by relevance
566 int iwhence = 0; in PetscBinarySeek() local569 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()