Lines Matching refs:sep
662 char *sep, *endptr;
680 sep = strrchr(line, 'x');
681 if (sep == NULL)
684 hex2u64(sep + 1, &start);
686 sep = strchr(line, ' ');
687 if (sep == NULL)
690 *sep = '\0';
694 size = strtoul(sep + 1, &endptr, 0);
2586 char *sep;
2596 val = strtoul(pos->s, &sep, 16);
2597 if (errno || (sep == pos->s))
2600 if (*sep != '\0') {
2602 while (end >= sep && isspace(*end))
2605 if (end >= sep)