Lines Matching refs:read0
144 class SchedUnary<string write, string read0, string mx, int sew = 0,
146 SchedNary<write, [read0], mx, sew, forceMasked, forceMergeOpRead>;
147 class SchedUnaryMC<string write, string read0, bit forceMasked = 1>:
148 SchedUnary<write, read0, "WorstCase", forceMasked=forceMasked>;
151 class SchedBinary<string write, string read0, string read1, string mx,
153 : SchedNary<write, [read0, read1], mx, sew, forceMasked, forceMergeOpRead>;
154 class SchedBinaryMC<string write, string read0, string read1,
156 SchedBinary<write, read0, read1, "WorstCase", forceMasked=forceMasked>;
159 class SchedTernary<string write, string read0, string read1, string read2,
161 : SchedNary<write, [read0, read1, read2], mx, sew, forceMasked>;
162 class SchedTernaryMC<string write, string read0, string read1, string read2,
164 SchedNary<write, [read0, read1, read2], "WorstCase", sew, forceMasked>;