Lines Matching defs:size
58 pbsx->vol_length = cpu_to_le64(bd->size / bd->sector_size);
376 "\t-c | --cluster-size=size(or suffixed by 'K' or 'M') Specify cluster size\n"
377 "\t-b | --boundary-align=size(or suffixed by 'K' or 'M') Specify boundary alignment\n"
392 {"cluster-size", required_argument, NULL, 'c' },
443 exfat_err("cluster size (%u bytes) is smaller than sector size (%u bytes)\n",
456 exfat_err("cluster size (%u bytes) is too small\n", ui->cluster_size);
462 if (bd->size <= finfo.clu_byte_off) {
466 total_clu_cnt = (bd->size - finfo.clu_byte_off) / ui->cluster_size;
468 exfat_err("cluster size is too small\n");
499 unsigned long long size;
502 size = finfo.root_byte_off + chunk_size;
504 size = bd->size;
521 } while (total_written < size);
524 exfat_debug("zero out written size : %llu, disk size : %llu\n",
525 total_written, bd->size);
533 exfat_info("Creating exFAT filesystem(%s, cluster size=%u)\n\n",
576 static long long parse_size(const char *size)
579 unsigned long long byte_size = strtoull(size, &data_unit, 0);
593 exfat_err("Wrong unit input('%c') for size\n",
637 exfat_err("cluster size(%d) is not a power of 2)\n",
641 exfat_err("cluster size(%d) exceeds max cluster size(%d)\n",