Searched refs:tmp4 (Results 1 - 25 of 43) sorted by relevance

12

/gem5/src/systemc/tests/systemc/misc/cae_test/general/arith/subtract/bitwidth/
H A Dstimulus.cpp50 sc_signed tmp4(8);
55 tmp4 = "0b00000011";
62 out_value4.write(tmp4);
63 cout << "Stimuli: "<< tmp1 << " " << tmp2 << " " << tmp3 << " " << tmp4 << endl;
67 tmp4 = tmp4 + 1;
/gem5/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/datatypes/
H A Dstimulus.cpp50 sc_signed tmp4(3);
59 tmp4 = "011";
69 out_value4.write(tmp4);
70 cout << "Stimuli: "<< tmp1 << " " << tmp2 << " " << tmp3 << " " << tmp4 << endl;
78 tmp4 = tmp4 + 1;
79 if (tmp4 == zero_3) tmp4 = "001";
H A Ddatatypes.cpp46 sc_bigint<3> tmp4; local
69 tmp4 = in_value4.read();
76 tmp1r = tmp4 / tmp1;
78 tmp2r = tmp1 / tmp4;
82 tmp4r = tmp4 / tmp2;
/gem5/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/divide/
H A Ddivide.cpp46 sc_bigint<8> tmp4; local
67 tmp4 = in_value4.read();
74 tmp4 = tmp4/2;
82 out_value4.write(tmp4);
92 tmp4 /= 3;
99 out_value4.write(tmp4);
108 if (tmp4!=0)
109 tmp2 = tmp2/tmp4;
113 tmp4
[all...]
/gem5/src/systemc/tests/systemc/misc/cae_test/general/arith/addition/addition/
H A Daddition.cpp45 sc_bigint<8> tmp4; local
66 tmp4 = in_value4.read();
73 tmp4 = tmp4 + 1;
81 out_value4.write(tmp4);
91 out_value4.write(tmp4++);
101 out_value4.write(++tmp4);
111 tmp4 = tmp4 + 254;
119 out_value4.write(tmp4);
[all...]
/gem5/src/systemc/tests/systemc/misc/cae_test/general/arith/subtract/subtract/
H A Dsubtract.cpp46 sc_bigint<8> tmp4; local
67 tmp4 = in_value4.read();
74 tmp4 = tmp4 - 1;
82 out_value4.write(tmp4);
92 out_value4.write(tmp4--);
102 out_value4.write(--tmp4);
112 tmp4 = tmp4 - 254;
120 out_value4.write(tmp4);
[all...]
/gem5/src/systemc/tests/systemc/misc/cae_test/general/arith/addition/datatypes/
H A Dstimulus.cpp49 int tmp4; local
57 tmp4 = -123456;
67 out_value4.write(tmp4);
70 cout << "Stimuli: " << tmp1 << " " << tmp2 << " " << tmp3 << " " << tmp4 << " " << tmp5 << " " << endl;
74 tmp4 = tmp4 + 3;
/gem5/src/systemc/tests/systemc/misc/cae_test/general/arith/subtract/datatypes/
H A Dstimulus.cpp50 int tmp4; local
57 tmp4 = -123456;
67 out_value4.write(tmp4);
70 cout << "Stimuli: " << tmp1 << " " << tmp2 << " " << tmp3 << " " << tmp4 << " " << tmp5 << endl;
74 tmp4 = tmp4 + 3;
/gem5/src/systemc/tests/systemc/misc/cae_test/general/arith/subtract/sharing/
H A Dstimulus.cpp50 sc_signed tmp4(7);
56 tmp4 = "0b0000011";
64 out_value4.write(tmp4);
66 cout << "Stimuli: " << tmp1 << " " << tmp2 << " " << tmp3 << " " << tmp4 << " " << tmp5 << endl;
70 tmp4 = tmp4 + 1;
H A Dsharing.cpp46 sc_biguint<7> tmp4; local
68 tmp4 = in_value4.read();
77 tmp4 = tmp4 - 2;
84 out_value4.write(tmp4);
/gem5/src/systemc/tests/systemc/misc/cae_test/general/bitwise/or/datatypes/
H A Dstimulus.cpp50 int tmp4; local
58 tmp4 = -123456;
68 out_value4.write(tmp4);
72 cout << "Stimuli: " << tmp1 << " " << tmp2 << " " << tmp3 << " " << tmp4 << " "
77 tmp4 = tmp4 + 3;
/gem5/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/
H A Dstimulus.cpp50 int tmp4; local
59 tmp4 = -1;
68 out_value4.write(tmp4);
71 cout << "Stimuli: " << tmp1 << " " << tmp2 << " " << tmp3 << " " << tmp4 << " " << tmp5 << " " << endl;
75 tmp4 = tmp4 + 1;
/gem5/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/
H A Dstimulus.cpp50 int tmp4; local
59 tmp4 = -1;
68 out_value4.write(tmp4);
71 cout << "Stimuli: " << tmp1 << " " << tmp2 << " " << tmp3 << " " << tmp4 << " " << tmp5 << " " << endl;
75 tmp4 = tmp4 + 1;
/gem5/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shr/sharing/
H A Dstimulus.cpp50 int tmp4; local
59 tmp4 = -1;
68 out_value4.write(tmp4);
71 cout << "Stimuli: " << tmp1 << " " << tmp2 << " " << tmp3 << " " << tmp4 << " " << tmp5 << " " << endl;
75 tmp4 = tmp4 + 1;
/gem5/src/systemc/tests/systemc/misc/cae_test/general/arith/modulo/
H A Dmodulo.cpp46 sc_bigint<8> tmp4; local
67 tmp4 = in_value4.read();
74 tmp4 = tmp4%5;
82 out_value4.write(tmp4);
92 tmp4 %= 3;
100 out_value4.write(tmp4);
109 if (tmp4!=0)
110 tmp2 = tmp2%tmp4;
114 tmp4
[all...]
/gem5/src/systemc/tests/systemc/misc/cae_test/general/arith/mult/
H A Dmult.cpp46 sc_bigint<8> tmp4; local
67 tmp4 = in_value4.read();
74 tmp4 = tmp4 * 2;
82 out_value4.write(tmp4);
92 tmp4 *= 2;
100 out_value4.write(tmp4);
108 tmp2 = tmp2*tmp4;
110 tmp4 = tmp4*tmp
[all...]
/gem5/src/systemc/tests/systemc/misc/cae_test/general/arith/addition/sharing/
H A Dsharing.cpp45 sc_biguint<7> tmp4; local
66 tmp4 = in_value4.read();
73 tmp4 = tmp4 + 10;
81 out_value4.write(tmp4);
91 tmp4 = tmp4 + 10;
99 out_value4.write(tmp4);
/gem5/src/systemc/tests/systemc/misc/cae_test/general/control/case/datatypes/
H A Ddatatypes.cpp47 sc_bv<4> tmp4; local
69 tmp4 = in_value4.read();
98 if (tmp4.range(1,3)=="000" || (tmp4.range(3,1).to_uint()!=4 &&
99 tmp4.range(3,1).to_uint()!=5 && tmp4.range(3,1).to_uint()!=6 &&
100 tmp4.range(3,1).to_uint()!=7)) {
103 out_value4.write(tmp4);
/gem5/src/systemc/tests/systemc/misc/cae_test/general/bitwise/and/and_1/
H A Dand_1.cpp47 sc_bigint<8> tmp4; local
68 tmp4 = in_value4.read();
76 tmp4 = tmp4 & 0x0f & 0x14 ;
84 out_value4.write(tmp4);
96 tmp4 &= 0x03;
104 out_value4.write(tmp4);
/gem5/src/systemc/tests/systemc/misc/cae_test/general/bitwise/not/not_1/
H A Dnot_1.cpp47 sc_bigint<8> tmp4; local
68 tmp4 = in_value4.read();
76 tmp4 = ~ tmp4 ;
84 out_value4.write(tmp4);
96 tmp4 = ~(0x03);
104 out_value4.write(tmp4);
/gem5/src/systemc/tests/systemc/misc/cae_test/general/bitwise/or/or_1/
H A Dor_1.cpp47 sc_bigint<8> tmp4; local
68 tmp4 = in_value4.read();
76 tmp4 = tmp4 | 0x0f | 0x14 ;
84 out_value4.write(tmp4);
96 tmp4 |= 0x03;
104 out_value4.write(tmp4);
/gem5/src/systemc/tests/systemc/misc/cae_test/general/bitwise/xor/xor_1/
H A Dxor_1.cpp47 sc_bigint<8> tmp4; local
68 tmp4 = in_value4.read();
76 tmp4 = tmp4 ^ 0x0f ^ 0x14 ;
84 out_value4.write(tmp4);
96 tmp4 ^= 0x03;
104 out_value4.write(tmp4);
/gem5/src/systemc/tests/systemc/misc/cae_test/general/bitwise/and/datatypes/
H A Dstimulus.cpp50 int tmp4; local
61 tmp4 = -123456;
74 out_value4.write(tmp4);
81 cout << "Stimuli: " << tmp1 << " " << tmp2 << " " << tmp3 << " " << tmp4 << " "
86 tmp4 = tmp4 + 3;
/gem5/src/systemc/tests/systemc/misc/cae_test/general/bitwise/not/datatypes/
H A Dstimulus.cpp50 int tmp4; local
61 tmp4 = -123456;
74 out_value4.write(tmp4);
81 cout << "Stimuli: " << tmp1 << " " << tmp2 << " " << tmp3 << " " << tmp4 << " "
86 tmp4 = tmp4 + 3;
/gem5/src/systemc/tests/systemc/misc/cae_test/general/bitwise/xor/datatypes/
H A Dstimulus.cpp50 int tmp4; local
61 tmp4 = -123456;
74 out_value4.write(tmp4);
81 cout << "Stimuli: " << tmp1 << " " << tmp2 << " " << tmp3 << " " << tmp4 << " "
86 tmp4 = tmp4 + 3;

Completed in 17 milliseconds

12