Searched refs:in1 (Results 201 - 213 of 213) sorted by relevance

123456789

/gem5/src/systemc/tests/systemc/misc/unit/data/general/int_to_bits/
H A Ddatawidth.cpp57 tmp_a = in1.read();
62 result.write(tmp_result); // result = in1 + in2
/gem5/src/systemc/tests/systemc/misc/unit/data/general/promote_add/
H A Ddatawidth.cpp57 // tmp_a = ('0', in1.read()); // extend in1 with 0 to make 7-bit
58 tmp_a = ("0", in1.read()); // extend in1 with 0 to make 7-bit
64 result.write(tmp_result); // result = in1 + in2
/gem5/src/systemc/tests/systemc/misc/user_guide/chpt4.1/
H A Dstage1.cpp53 a = in1.read();
/gem5/src/systemc/tests/systemc/misc/user_guide/chpt4.2/
H A Dstage1.cpp53 a = in1.read();
/gem5/src/systemc/tests/systemc/misc/user_guide/chpt4.4/
H A Dstage1.cpp54 a = in1.read();
/gem5/src/systemc/tests/systemc/misc/user_guide/newsched/test6/
H A Dtest6.cpp78 const sc_signal<int>& in1; local
90 : in1(IN1), in2(IN2), in3(IN3), in4(IN4)
94 sensitive << clock1 << clock2 << in1 << in2 << in3 << in4;
104 if (in1.event()) cout << "Sync1 Out = " << in1.read() << " - ";
/gem5/src/systemc/tests/systemc/misc/user_guide/newsched/test7/
H A Dtest7.cpp78 const sc_signal<int>& in1; local
90 : in1(IN1), in2(IN2), in3(IN3), in4(IN4)
96 sensitive << in1 << in2 << in3 << in4;
106 if (in1.event()) cout << "Sync1 Out = " << in1.read() << " - ";
/gem5/src/systemc/tests/systemc/misc/user_guide/newsched/test8/
H A Dtest8.cpp87 const sc_signal<int>& in1; local
99 : in1(IN1), in2(IN2), in3(IN3), in4(IN4)
105 sensitive << in1; sensitive << in2; sensitive << in3; sensitive << in4; local
115 if (in1.event()) cout << "Sync1 Out = " << in1.read() << " - ";
/gem5/src/systemc/tests/systemc/misc/user_guide/newsched/test1/
H A Dtest1.cpp54 const sc_signal<int>& in1; local
63 : in1(IN1), in2(IN2), out(OUT_)
76 while (in1.read() != i) {
77 cout << "Sync: Value written = " << i << " value1 read = " << in1.read() << " value2 read = " << in2.read() << endl;
/gem5/src/systemc/tests/systemc/communication/ports/test03/
H A Dtest03.cpp70 sc_port<sc_signal_in_if<bool>,1> in1; local
87 in1( "in_1", sig1 ), in2( "in_2", sig3 ), inout1( "inout_1", sig2),
108 WRITE(c.in1);
/gem5/src/systemc/tests/systemc/misc/user_guide/newsched/test2/
H A Dtest2.cpp53 const sc_signal<int>& in1; local
62 : in1(IN1), in2(IN2), out(OUT_)
76 cout << "Sync: Value written = " << i << " value1 read = " << in1.read() << " value2 read = " << in2.read() << endl;
/gem5/src/systemc/tests/systemc/misc/unit/data/general/array_range/
H A Darray_range.cpp57 a = in1.read();
/gem5/src/systemc/tests/systemc/misc/sim_tests/cycle_dw8051_demo/
H A Dcycle_model.cpp1520 int in1, in2, out = 0; local
1524 in1 = fetch_operand(&(i->src1));
1530 printf("execute %d, with in1=%d and in2=%d\n",i->type,in1, in2);
1536 out = in1 + in2;
1540 out = in1 - in2;
1544 out = in1+1;
1548 out = in1-1;
1552 out = in1 * in2;
1556 out = in1/in
[all...]

Completed in 103 milliseconds

123456789