Lines Matching defs:bytes
155 s64 bytes;
349 " -s, --size SIZE Resize volume to SIZE[k|M|G] bytes\n"
417 * will be assumed to be in bytes. If the number has a suffix of k, M or G it
545 if (!err && (opt.bytes == 0))
546 opt.bytes = get_new_volume_size(optarg);
581 if (opt.bytes
642 printf("You might resize at %lld bytes ", (long long)new_b);
655 printf("%lld bytes", (long long)freed_b);
697 * The size must be always a multiple of 8 bytes.
2463 * per cluster of the shrunken volume. Also it must be a of 8 bytes in size.
2820 && !(opt.bytes % vol->sector_size)) {
2821 if (vol->dev->d_ops->seek(vol->dev, opt.bytes
2842 * Print the volume size in bytes and decimal megabytes.
2844 static void print_vol_size(const char *str, s64 bytes)
2846 printf("%s: %lld bytes (%lld MB)\n", str, (long long)bytes,
2847 (long long)rounded_up_division(bytes, NTFS_MBYTE));
2967 printf("Cluster size : %u bytes\n",
3570 printf("You must expand the partition to at least %lld bytes,\n",
3572 printf("and you may add a multiple of %ld bytes to this size.\n",
3574 printf("The minimum NTFS volume size is %lld bytes\n",
4540 s64 device_size; /* in bytes */
4596 if (!opt.bytes && !opt.info && !opt.infombonly) {
4597 opt.bytes = device_size;
4603 if (opt.bytes > vol->sector_size)
4604 new_size = (opt.bytes - vol->sector_size) / vol->cluster_size;
4610 if (device_size < opt.bytes)
4617 (opt.bytes == device_size &&