Lines Matching refs:endptr
7 char *endptr, *tok, *name;
17 ops->target.addr = strtoull(tok + 1, &endptr, 16);
19 name = strchr(endptr, '<');
60 char *s = strchr(ops->raw, ','), *target, *endptr;
77 ops->target.addr = strtoull(target, &endptr, 16);
78 if (endptr == target)
81 s = strchr(endptr, '<');
84 endptr = strchr(s + 1, '>');
85 if (endptr == NULL)
88 *endptr = '\0';
90 *endptr = '>';