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