Lines Matching defs:endp
326 static int ustrtoul(const char *cp, char **endp, unsigned int base)
328 unsigned long result = simple_strtoul(cp, endp, base);
329 switch (**endp) {
340 if ((*endp)[1] == 'i') {
341 if ((*endp)[2] == 'B')
342 (*endp) += 3;
344 (*endp) += 2;
353 char *endp;
356 n = (size_t) ustrtoul(token, &endp, 0);
357 if (*endp)