Lines Matching full:end
137 int64_t start, end; in try_parse_int64_list_entry() local
143 end = start; in try_parse_int64_list_entry()
153 /* parse the end of the range */ in try_parse_int64_list_entry()
154 if (qemu_strtoi64(endptr + 1, &endptr, 0, &end)) { in try_parse_int64_list_entry()
157 if (start > end || end - start >= RANGE_MAX_ELEMENTS) { in try_parse_int64_list_entry()
178 siv->rangeEnd.i64 = end; in try_parse_int64_list_entry()
212 /* end of range, check if there is more to parse */ in parse_type_int64()
227 uint64_t start, end; in try_parse_uint64_list_entry() local
233 end = start; in try_parse_uint64_list_entry()
243 /* parse the end of the range */ in try_parse_uint64_list_entry()
244 if (qemu_strtou64(endptr + 1, &endptr, 0, &end)) { in try_parse_uint64_list_entry()
247 if (start > end || end - start >= RANGE_MAX_ELEMENTS) { in try_parse_uint64_list_entry()
268 siv->rangeEnd.u64 = end; in try_parse_uint64_list_entry()
302 /* end of range, check if there is more to parse */ in parse_type_uint64()