Lines Matching refs:RANGE_TO

233                          (r.kind == RANGE_TO) ? "to" : "downto",  in bounds_check_call_args()
267 (r.kind == RANGE_TO) ? "to" : "downto", in bounds_check_array_ref()
306 if ((b.kind != RANGE_TO) && (b.kind != RANGE_DOWNTO)) in bounds_check_array_slice()
308 else if ((r.kind != RANGE_TO) && (r.kind != RANGE_DOWNTO)) in bounds_check_array_slice()
314 left_error = ((b.kind == RANGE_TO) && (r_left < b_left)) in bounds_check_array_slice()
320 right_error = ((b.kind == RANGE_TO) && (r_right > b_right)) in bounds_check_array_slice()
331 (b.kind == RANGE_TO) ? "to" : "downto", b_right); in bounds_check_array_slice()
344 (kind == RANGE_TO) ? low : high, in bounds_within()
345 (kind == RANGE_TO) ? "to" : "downto", in bounds_within()
346 (kind == RANGE_TO) ? high : low); in bounds_within()
352 tree_t left_lit = type_enum_literal(base, (kind == RANGE_TO) ? low : high); in bounds_within()
353 tree_t right_lit = type_enum_literal(base, (kind == RANGE_TO) ? high : low); in bounds_within()
358 (kind == RANGE_TO) ? "to" : "downto", in bounds_within()
519 bounds_error((dim.kind == RANGE_TO) ? dim.left : dim.right, in bounds_check_decl()
521 (dim.kind == RANGE_TO) ? "left" : "right", in bounds_check_decl()
525 bounds_error((dim.kind == RANGE_TO) ? dim.left : dim.right, in bounds_check_decl()
527 (dim.kind == RANGE_TO) ? "left" : "right", in bounds_check_decl()
535 bounds_error((dim.kind == RANGE_TO) ? dim.right : dim.left, in bounds_check_decl()
537 (dim.kind == RANGE_TO) ? "right" : "left", in bounds_check_decl()
541 bounds_error((dim.kind == RANGE_TO) ? dim.right : dim.left, in bounds_check_decl()
543 (dim.kind == RANGE_TO) ? "right" : "left", in bounds_check_decl()
587 (r.kind == RANGE_TO) ? "to" : "downto", in bounds_check_assignment()
700 assert(r.kind == RANGE_TO); in bounds_check_case()
788 assert(r.kind == RANGE_TO); in bounds_check_case()