Home | History | Annotate | Download | only in toolbox

Lines Matching refs:opt_b

242     const char *opt_B = NULL, *opt_L = NULL, *opt_O = NULL, *opt_f = NULL;
243 u_int opt_F = 0, opt_I = 0, opt_S = 0, opt_a = 0, opt_b = 0, opt_c = 0;
280 opt_B = optarg;
311 opt_b = argtox(optarg, 1, "block size");
316 opt_b = 0;
458 if (opt_b) {
459 if (!powerof2(opt_b))
460 errx(1, "block size (%u) is not a power of 2", opt_b);
461 if (opt_b < bpb.bps)
463 opt_b, bpb.bps);
464 if (opt_b
465 errx(1, "block size (%u) is too large; maximum is %u", opt_b, bpb.bps * MAXSPC);
466 bpb.spc = opt_b / bpb.bps;
496 if (opt_B) {
497 bname = opt_B;
646 if (opt_B && fat == 32 && bpb.bkbs != MAXU16 && bss <= bpb.bkbs && x >= bpb.bkbs) {
651 if (opt_B && x < bss) {
700 if (!opt_B) {