Lines Matching refs:offset_out
471 off_t offset_out, offset_in; in test4_lseek() local
476 offset_out = seek_adi(fd, offset_in, SEEK_SET); in test4_lseek()
477 if (offset_out != offset_in) { in test4_lseek()
483 offset_out = seek_adi(fd, offset_in, SEEK_SET); in test4_lseek()
484 if (offset_out < 0 && errno == EINVAL) in test4_lseek()
492 offset_out = seek_adi(fd, 0, SEEK_CUR); in test4_lseek()
493 if (offset_out != offset_in) { in test4_lseek()
498 offset_out = seek_adi(fd, OFFSET_ADD, SEEK_CUR); in test4_lseek()
499 if (offset_out != (offset_in + OFFSET_ADD)) { in test4_lseek()
504 offset_out = seek_adi(fd, OFFSET_SUBTRACT, SEEK_CUR); in test4_lseek()
505 if (offset_out != (offset_in + OFFSET_ADD + OFFSET_SUBTRACT)) { in test4_lseek()