Searched defs:endp (Results 1 - 3 of 3) sorted by relevance

/lib/
H A Dparser.c130 char *endp; local
143 val = simple_strtol(buf, &endp, base);
144 if (endp == buf)
H A Ddigsig.c82 uint8_t *p, *datap, *endp; local
104 endp = ukp->data + ukp->datalen;
109 unsigned int remaining = endp - datap;
H A Dvsprintf.c42 * @endp: A pointer to the end of the parsed string will be placed here
47 unsigned long long simple_strtoull(const char *cp, char **endp, unsigned int base) argument
57 if (endp)
58 *endp = (char *)cp;
67 * @endp: A pointer to the end of the parsed string will be placed here
72 unsigned long simple_strtoul(const char *cp, char **endp, unsigned int base) argument
74 return simple_strtoull(cp, endp, base);
81 * @endp: A pointer to the end of the parsed string will be placed here
86 long simple_strtol(const char *cp, char **endp, unsigned int base) argument
89 return -simple_strtoul(cp + 1, endp, bas
103 simple_strtoll(const char *cp, char **endp, unsigned int base) argument
[all...]

Completed in 51 milliseconds