Home
last modified time | relevance | path

Searched refs:lowerbound (Results 1 – 3 of 3) sorted by relevance

/NextBSD/contrib/gdb/gdb/
HDvalarith.c195 LONGEST lowerbound, upperbound; in value_subscript() local
196 get_discrete_bounds (range_type, &lowerbound, &upperbound); in value_subscript()
199 return value_subscripted_rvalue (array, idx, lowerbound); in value_subscript()
204 if (index >= lowerbound && index <= upperbound) in value_subscript()
205 return value_subscripted_rvalue (array, idx, lowerbound); in value_subscript()
211 if (lowerbound != 0) in value_subscript()
213 bound = value_from_longest (builtin_type_int, (LONGEST) lowerbound); in value_subscript()
226 LONGEST lowerbound, upperbound; in value_subscript() local
227 get_discrete_bounds (range_type, &lowerbound, &upperbound); in value_subscript()
228 if (index < lowerbound || index > upperbound) in value_subscript()
[all …]
HDvalops.c2798 LONGEST lowerbound, upperbound; in value_slice() local
2808 if (get_discrete_bounds (range_type, &lowerbound, &upperbound) < 0) in value_slice()
2810 if (lowbound < lowerbound || length < 0 in value_slice()
2847 = (lowbound - lowerbound) * TYPE_LENGTH (check_typedef (element_type)); in value_slice()
HDada-lang.c1308 LONGEST lowerbound, upperbound; in value_subscript_packed() local
1311 if (get_discrete_bounds (range_type, &lowerbound, &upperbound) < 0) in value_subscript_packed()
1314 lowerbound = upperbound = 0; in value_subscript_packed()
1318 if (idx < lowerbound || idx > upperbound) in value_subscript_packed()
1321 elt_total_bit_offset += (idx - lowerbound) * bits; in value_subscript_packed()