Lines Matching defs:bytes
38 void verify(const char *fname, size_t bytes, size_t decrement)
45 while (bytes > 0) {
47 SAFE_WRITE(SAFE_WRITE_ALL, fd, buffer, bytes);
48 bytes_written += bytes;
50 bytes -= bytes > decrement ? decrement : bytes;
58 * Now check to see if the number of bytes written was
59 * the same as the number of bytes in the file.
62 tst_res(TFAIL, "file size (%zu) not as expected (%zu) bytes",