Home
last modified time | relevance | path

Searched refs:vvp_delay_t (Results 1 – 6 of 6) sorted by relevance

/dports/cad/iverilog/verilog-11.0/vvp/
H A Ddelay.h39 class vvp_delay_t {
42 vvp_delay_t(vvp_time64_t rise, vvp_time64_t fall);
43 vvp_delay_t(vvp_time64_t rise, vvp_time64_t fall, vvp_time64_t decay);
44 ~vvp_delay_t();
92 vvp_fun_delay(vvp_net_t*net, unsigned width, const vvp_delay_t&d);
118 vvp_delay_t delay_;
H A Ddelay.cc34 void vvp_delay_t::calculate_min_delay_() in calculate_min_delay_()
44 vvp_delay_t::vvp_delay_t(vvp_time64_t rise, vvp_time64_t fall) in vvp_delay_t() function in vvp_delay_t
53 vvp_delay_t::vvp_delay_t(vvp_time64_t rise, vvp_time64_t fall, vvp_time64_t decay) in vvp_delay_t() function in vvp_delay_t
63 void vvp_delay_t::set_ignore_decay() in set_ignore_decay()
70 vvp_delay_t::~vvp_delay_t() in ~vvp_delay_t()
74 vvp_time64_t vvp_delay_t::get_delay(vvp_bit4_t from, vvp_bit4_t to) in get_delay()
115 vvp_time64_t vvp_delay_t::get_min_delay() const in get_min_delay()
120 void vvp_delay_t::set_rise(vvp_time64_t val) in set_rise()
130 void vvp_delay_t::set_fall(vvp_time64_t val) in set_fall()
140 void vvp_delay_t::set_decay(vvp_time64_t val) in set_decay()
[all …]
H A Dparse.y71 vvp_delay_t*cdelay;
1231 { $$ = new vvp_delay_t($2, $2); }
1233 { $$ = new vvp_delay_t($2, $4); }
1235 { $$ = new vvp_delay_t($2, $4, $6); }
H A Dcompile.h141 vvp_delay_t*del, struct symb_s input);
H A Dcompile.cc1476 vvp_delay_t*delay, struct symb_s arg) in compile_delay()
1493 vvp_delay_t stub (0, 0, 0); in compile_delay()
H A Dvvp_net.h62 class vvp_delay_t; variable