Home
last modified time | relevance | path

Searched refs:endp (Results 1 – 4 of 4) sorted by relevance

/lib/
A Dparser.c140 char *endp; in match_number() local
148 val = simple_strtol(buf, &endp, base); in match_number()
149 if (endp == buf) in match_number()
A Ddigsig.c80 const uint8_t *endp; in digsig_verify_rsa() local
108 endp = ukp->data + ukp->datalen; in digsig_verify_rsa()
111 unsigned int remaining = endp - datap; in digsig_verify_rsa()
A Dvsprintf.c96 if (endp) in simple_strntoull()
97 *endp = (char *)cp; in simple_strntoull()
113 return simple_strntoull(cp, endp, base, INT_MAX); in simple_strtoull()
127 return simple_strtoull(cp, endp, base); in simple_strtoul()
134 return simple_strntoull(cp, endp, base, max_chars); in simple_strntoul()
146 long simple_strtol(const char *cp, char **endp, unsigned int base) in simple_strtol() argument
149 return -simple_strtoul(cp + 1, endp, base); in simple_strtol()
151 return simple_strtoul(cp, endp, base); in simple_strtol()
165 return -simple_strntoull(cp + 1, endp, base, max_chars - 1); in simple_strntoll()
167 return simple_strntoull(cp, endp, base, max_chars); in simple_strntoll()
[all …]
/lib/tests/
A Dscanf_kunit.c685 char *endp; \
689 got = (fn)(test_buffer, &endp, base); \
693 } else if (endp != test_buffer + len) { \
696 test_buffer + len, endp); \

Completed in 13 milliseconds