Lines Matching defs:offset
17 * 1. Call sendfile() with offset at 0.
18 * 2. Call sendfile() with offset at 3GB.
35 off_t offset;
40 { "offset at 0", 0, ONE_GB, ONE_GB, ONE_GB },
41 { "offset at 3GB", 3 * ONE_GB, ONE_GB, ONE_GB, 4 * ONE_GB }
66 off_t offset = tc[i].offset;
71 TEST(sendfile(out_fd, in_fd, &offset, tc[i].count));
78 else if (offset != tc[i].exp_updated_offset)
81 tc[i].exp_updated_offset, (int64_t)(offset));