Lines Matching defs:eptr
338 char *eptr;
340 val = strtol(s + *off, &eptr, 0);
341 if (val < (int8_t)0x80 || val > (u_int8_t)0xff || eptr == s + *off)
343 *off = eptr - s;
433 char *eptr;
435 val = strtol(s + *off, &eptr, 0);
437 || val > (u_int16_t)0xffff || eptr == s + *off)
439 *off = eptr - s;
529 char *eptr;
532 val = strtol(s + *off, &eptr, 0);
534 val = strtoul(s + *off, &eptr, 0);
536 || val > (u_int32_t)0xffffffff || eptr == s + *off)
538 *off = eptr - s;
628 char *eptr;
630 val = strtoq(s + *off, &eptr, 0);
631 if (eptr == s + *off)
633 *off = eptr - s;
1020 char *eptr;
1027 val = strtoul(s + *off, &eptr, 16);
1028 if (val > 0xff || eptr == s + *off)
1031 *off = (eptr - s);
1033 if (*eptr != ':')
1243 char *eptr;
1265 ul = strtoul(s + *off, &eptr, 0);
1266 if (ul == ULONG_MAX || eptr - (s + *off) != len) {