Lines Matching defs:endp
348 static int ustrtoul(const char *cp, char **endp, unsigned int base)
350 unsigned long result = simple_strtoul(cp, endp, base);
351 switch (**endp) {
362 if ((*endp)[1] == 'i') {
363 if ((*endp)[2] == 'B')
364 (*endp) += 3;
366 (*endp) += 2;
375 char *endp;
378 n = (size_t) ustrtoul(token, &endp, 0);
379 if (*endp)