Lines Matching refs:sep
434 char *sep, *endptr;
446 sep = memchr(fixup_str, ':', fixup_len);
447 if (!sep || *sep != ':')
450 path_len = sep - path;
455 name = sep + 1;
456 sep = memchr(name, ':', fixup_len);
457 if (!sep || *sep != ':')
460 name_len = sep - name;
464 poffset = strtoul(sep + 1, &endptr, 10);
465 if ((*endptr != '\0') || (endptr <= (sep + 1)))