Lines Matching refs:end
217 char *end;
220 record->zi_start = strtoull(range, &end, 10);
223 if (*end == '\0')
225 else if (*end == ',')
226 record->zi_end = strtoull(end + 1, &end, 10);
228 if (*end != '\0') {
230 "a numeric range of the form 'start[,end]'\n",
450 char *end;
462 record->zi_guid = strtoull(device, &end, 16);
463 if (record->zi_guid == 0 || *end != '\0') {