Lines Matching defs:endptr
4145 char *endptr;
4199 firstlcn = strtoull(optarg, &endptr, 0);
4201 if (*endptr == '-')
4202 lastlcn = strtoull(++endptr, &endptr, 0);
4203 if (*endptr || (lastlcn < firstlcn)) {
4223 playcount = strtoull(optarg, &endptr, 0);
4224 if (*endptr) {
4231 firstblk = strtoull(optarg, &endptr, 0);
4233 if (*endptr == '-')
4234 lastblk = strtoull(++endptr, &endptr, 0);
4235 if (*endptr || (lastblk < firstblk)) {
4248 playcount = strtoull(optarg, &endptr, 0);
4249 if (*endptr) {
4267 xval = strtoull(optarg, &endptr, 0);
4268 while ((*endptr == ',')
4271 xval = strtoull(++endptr, &endptr, 0);
4273 if (*endptr || (xcount >= MAXEXCEPTION)) {