Home | History | Annotate | Download | only in gptfdisk

Lines Matching defs:bytes

293 // size with the number of bytes read.
294 // Returns the number of bytes read into buffer.
336 // size with the number of bytes read.
337 // Returns the number of bytes written.
391 off_t bytes = 0; // size in bytes
420 *err = ioctl(fd, DIOCGMEDIASIZE, &bytes);
422 sectors = bytes / b;
452 bytes = st.st_size;
453 if ((bytes % UINT64_C(512)) != 0)
454 cerr << "Warning: File size is not a multiple of 512 bytes!"
456 sectors = bytes / UINT64_C(512);