Lines Matching +defs:end +defs:re
587 if (ok("Explicitly specify beg/end address ?"))
702 u_int32_t end;
717 end = partp->dp_start + partp->dp_size - 1;
718 partp->dp_ehd = end % dos_cylsecs / dos_sectors;
719 cy = end / dos_cylsecs;
720 sec = end % dos_sectors + 1;
971 char *cp, *end;
993 end = NULL;
994 command->args[command->n_args].arg_val = strtoul(cp, &end, 0);
995 if (cp == end || (!isspace(*end) && *end != '\0')) {
997 end = cp;
998 while (!isspace(*end) && *end != '\0') ++end;
999 ch = *end; *end = '\0';
1001 *end = ch;
1004 cp = end;
1105 char *end;
1108 val = strtoul(str, &end, 0);
1109 if (str == end || *end == '\0') {
1115 if (*end == 'K')
1117 else if (*end == 'M')
1119 else if (*end == 'G')
1123 "(not K/M/G)", current_line_number, *end);
1218 * Can't go past end of partition
1245 and end on a cylinder boundary.");
1251 to end on a cylinder boundary",
1350 * We're not reading from stdin
1372 * It doesn't matter if we're reading from stdin, as we've reached EOF
1421 warnx("WARNING: partition does not end on a cylinder boundary");
1434 * Can't go past end of partition
1452 and end on a cylinder boundary.");
1482 regex_t re;
1491 if ((rv = regcomp(&re, "^(/dev/[a-z/]+[0-9]+)([sp][0-9]+)?[a-h]?(\\.journal)?$",
1498 if ((rv = regexec(&re, dev, NMATCHES, rm, 0)) != 0)