Lines Matching refs:offset_out
475 off_t offset_out, offset_in; in test4_lseek() local
480 offset_out = seek_adi(fd, offset_in, SEEK_SET); in test4_lseek()
481 if (offset_out != offset_in) { in test4_lseek()
487 offset_out = seek_adi(fd, offset_in, SEEK_SET); in test4_lseek()
488 if (offset_out < 0 && errno == EINVAL) in test4_lseek()
496 offset_out = seek_adi(fd, 0, SEEK_CUR); in test4_lseek()
497 if (offset_out != offset_in) { in test4_lseek()
502 offset_out = seek_adi(fd, OFFSET_ADD, SEEK_CUR); in test4_lseek()
503 if (offset_out != (offset_in + OFFSET_ADD)) { in test4_lseek()
508 offset_out = seek_adi(fd, OFFSET_SUBTRACT, SEEK_CUR); in test4_lseek()
509 if (offset_out != (offset_in + OFFSET_ADD + OFFSET_SUBTRACT)) { in test4_lseek()