Home | History | Annotate | Download | only in gptfdisk

Lines Matching defs:bytes

295 // size with the number of bytes read.
296 // Returns the number of bytes read into buffer.
338 // size with the number of bytes read.
339 // Returns the number of bytes written.
393 off_t bytes = 0; // size in bytes
422 *err = ioctl(fd, DIOCGMEDIASIZE, &bytes);
424 sectors = bytes / b;
454 bytes = st.st_size;
455 if ((bytes % UINT64_C(512)) != 0)
456 cerr << "Warning: File size is not a multiple of 512 bytes!"
458 sectors = bytes / UINT64_C(512);