Lines Matching defs:number

55 static unsigned int number(char *, char *, int, int);
90 /* For use with number() */
128 static int density = 0; /* number of bytes per inode */
133 static int maxcontig = -1; /* maximum number of contig blocks */
214 maxcontig = number("maxcontig", optarg, NR_NONE, -1);
220 rot = number("rotdelay", optarg, NR_NONE, 0);
228 ntracks = number("ntrack", optarg, NR_NONE, 16);
246 apc = number("apc", optarg, NR_NONE, 0);
254 bsize = number("bsize", optarg, NR_NONE, DESBLKSIZE);
261 fsize = number("fragsize", optarg, NR_NONE,
270 cpg = number("cpg", optarg, NR_NONE, 16);
278 minfree = number("minfree", optarg, NR_PERCENT, 10);
284 nrpos = number("nrpos", optarg, NR_NONE, 8);
288 "%s: bad number of rotational positions"),
293 rpm = number("rpm", optarg, NR_NONE, 3600);
301 density = number("nbpi", optarg, NR_NONE, 2048);
451 "Warning: number of rotational positions is obsolete for this device and\n"
455 "Warning: number of alternate sectors per cylinder is obsolete for this\n"
527 * The number of fragments in the file system must fit into
528 * a signed 32-bit quantity, so the number of sectors in the
529 * file system is INT_MAX * the number of sectors in a frag.
1140 (void) fprintf(stderr, gettext("\t-i number of bytes per inode\n"));
1142 "\t-a number of alternates per cylinder\n"));
1146 "\t-n number of rotational positions\n"));
1154 * Error-detecting version of atoi(3). Adapted from mkfs' number().
1157 number(char *param, char *value, int flags, int def_value)
1206 * Error-detecting version of atoi(3). Adapted from mkfs' number().