Home
last modified time | relevance | path

Searched refs:RANGE_DOWNTO (Results 1 – 10 of 10) sorted by relevance

/dports/cad/nvc/nvc-r1.5.3/src/
H A Dprim.h52 RANGE_DOWNTO, enumerator
H A Dbounds.c306 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()
315 || ((b.kind == RANGE_DOWNTO) && (r_left > b_left)); in bounds_check_array_slice()
321 || ((b.kind == RANGE_DOWNTO) && (r_right < b_right)); in bounds_check_array_slice()
H A Dcommon.c211 case RANGE_DOWNTO: in folded_bounds()
229 case RANGE_DOWNTO: in folded_bounds_real()
H A Ddump.c130 case RANGE_DOWNTO: in dump_range()
317 case RANGE_DOWNTO: in dump_type()
H A Djson.c92 case RANGE_DOWNTO: in dump_range()
307 case RANGE_DOWNTO: in dump_type()
H A Dsem.c1403 dir = (dir == RANGE_TO) ? RANGE_DOWNTO : RANGE_TO; in sem_check_range()
5193 else if (r.kind == RANGE_DOWNTO) { in sem_check_aggregate()
5554 && (r.kind == RANGE_TO || r.kind == RANGE_DOWNTO) in sem_check_array_slice()
5555 && (prefix_dir == RANGE_TO || prefix_dir == RANGE_DOWNTO); in sem_check_array_slice()
6516 if (r.kind != RANGE_TO && r.kind != RANGE_DOWNTO) in sem_locally_static()
6611 return (r.kind == RANGE_TO || r.kind == RANGE_DOWNTO) in sem_static_name()
6665 if (r.kind != RANGE_TO && r.kind != RANGE_DOWNTO) in sem_globally_static()
H A Dlower.c134 else if (r.kind != RANGE_TO && r.kind != RANGE_DOWNTO) in lower_const_bounds()
196 case RANGE_DOWNTO: in lower_range_dir()
256 case RANGE_DOWNTO: in lower_array_len()
1984 const bool is_downto = (r.kind == RANGE_DOWNTO); in lower_const_array_aggregate()
4028 const int dirmul = (r.kind == RANGE_DOWNTO) ? -1 : 1; in lower_case_array()
H A Dsimp.c358 (r.kind == RANGE_TO) || (r.kind == RANGE_DOWNTO); in simp_attr_ref()
H A Dparse.c1071 r.kind = RANGE_DOWNTO; in p_range()
/dports/cad/nvc/nvc-r1.5.3/test/
H A Dtest_lib.c69 range_t r = { .kind = RANGE_DOWNTO, .left = left, .right = right }; in str_to_agg()