Lines Matching defs:bytes
339 // size with the number of bytes read.
340 // Returns the number of bytes read into buffer.
382 // size with the number of bytes read.
383 // Returns the number of bytes written.
437 off64_t bytes = 0; // size in bytes
466 *err = ioctl(fd, DIOCGMEDIASIZE, &bytes);
468 sectors = bytes / b;
498 bytes = st.st_size;
499 if ((bytes % UINT64_C(512)) != 0)
500 cerr << "Warning: File size is not a multiple of 512 bytes!"
502 sectors = bytes / UINT64_C(512);