Searched refs:tmp5 (Results 1 - 25 of 34) sorted by relevance

12

/gem5/src/systemc/tests/systemc/misc/cae_test/general/arith/divide/divide/
H A Ddivide.cpp47 sc_biguint<8> tmp5; local
68 tmp5 = in_value5.read();
75 tmp5 = tmp5/2;
83 out_value5.write(tmp5);
93 tmp5 /= 3;
100 out_value5.write(tmp5);
110 if (tmp5!=0)
111 tmp3 = tmp3/tmp5;
112 if (tmp5!
[all...]
/gem5/src/systemc/tests/systemc/misc/cae_test/general/arith/addition/addition/
H A Daddition.cpp46 sc_biguint<8> tmp5; local
67 tmp5 = in_value5.read();
74 tmp5 = tmp5 + 1;
82 out_value5.write(tmp5);
92 out_value5.write(tmp5++);
102 out_value5.write(++tmp5);
112 tmp5 = tmp5 + 254;
120 out_value5.write(tmp5);
[all...]
/gem5/src/systemc/tests/systemc/misc/cae_test/general/arith/subtract/subtract/
H A Dsubtract.cpp47 sc_biguint<8> tmp5; local
68 tmp5 = in_value5.read();
75 tmp5 = tmp5 - 1;
83 out_value5.write(tmp5);
93 out_value5.write(tmp5--);
103 out_value5.write(--tmp5);
113 tmp5 = tmp5 - 254;
121 out_value5.write(tmp5);
[all...]
/gem5/src/systemc/tests/systemc/misc/cae_test/general/arith/addition/datatypes/
H A Dstimulus.cpp50 short tmp5; local
58 tmp5 = 20000;
68 out_value5.write(tmp5);
70 cout << "Stimuli: " << tmp1 << " " << tmp2 << " " << tmp3 << " " << tmp4 << " " << tmp5 << " " << endl;
75 tmp5 = tmp5 + 6;
/gem5/src/systemc/tests/systemc/misc/cae_test/general/arith/subtract/datatypes/
H A Dstimulus.cpp51 short tmp5; local
58 tmp5 = 20000;
68 out_value5.write(tmp5);
70 cout << "Stimuli: " << tmp1 << " " << tmp2 << " " << tmp3 << " " << tmp4 << " " << tmp5 << endl;
75 tmp5 = tmp5 + 6;
/gem5/src/systemc/tests/systemc/misc/cae_test/general/arith/subtract/sharing/
H A Dstimulus.cpp51 sc_signed tmp5(8);
57 tmp5 = "0b00000100";
65 out_value5.write(tmp5);
66 cout << "Stimuli: " << tmp1 << " " << tmp2 << " " << tmp3 << " " << tmp4 << " " << tmp5 << endl;
71 tmp5 = tmp5 + 1;
H A Dsharing.cpp47 sc_biguint<8> tmp5; local
69 tmp5 = in_value5.read();
78 tmp5 = tmp5 - 2;
85 out_value5.write(tmp5);
/gem5/src/systemc/tests/systemc/misc/cae_test/general/bitwise/or/datatypes/
H A Dstimulus.cpp51 short tmp5; local
59 tmp5 = 20000;
69 out_value5.write(tmp5);
73 << tmp5 << " " << tmp6 << " " << tmp7 << endl;
78 tmp5 = tmp5 + 6;
H A Ddatatypes.cpp52 short tmp5; local
86 tmp5 = in_value5.read();
101 tmp4r = tmp4 | tmp5;
103 tmp5r = tmp5 | 5;
/gem5/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/datatypes/
H A Dstimulus.cpp51 short tmp5; local
60 tmp5 = 20000;
69 out_value5.write(tmp5);
71 cout << "Stimuli: " << tmp1 << " " << tmp2 << " " << tmp3 << " " << tmp4 << " " << tmp5 << " " << endl;
76 tmp5 = tmp5 + 1;
/gem5/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/sharing/
H A Dstimulus.cpp51 short tmp5; local
60 tmp5 = 20000;
69 out_value5.write(tmp5);
71 cout << "Stimuli: " << tmp1 << " " << tmp2 << " " << tmp3 << " " << tmp4 << " " << tmp5 << " " << endl;
76 tmp5 = tmp5 + 1;
/gem5/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shr/sharing/
H A Dstimulus.cpp51 short tmp5; local
60 tmp5 = 20000;
69 out_value5.write(tmp5);
71 cout << "Stimuli: " << tmp1 << " " << tmp2 << " " << tmp3 << " " << tmp4 << " " << tmp5 << " " << endl;
76 tmp5 = tmp5 + 1;
/gem5/src/systemc/tests/systemc/misc/cae_test/general/arith/modulo/
H A Dmodulo.cpp47 sc_biguint<8> tmp5; local
68 tmp5 = in_value5.read();
75 tmp5 = tmp5%5;
83 out_value5.write(tmp5);
93 tmp5 %= 3;
101 out_value5.write(tmp5);
111 if (tmp5!=0)
112 tmp3 = tmp3%tmp5;
113 if (tmp5!
[all...]
/gem5/src/systemc/tests/systemc/misc/cae_test/general/arith/mult/
H A Dmult.cpp47 sc_biguint<8> tmp5; local
68 tmp5 = in_value5.read();
75 tmp5 = tmp5 * 2;
83 out_value5.write(tmp5);
93 tmp5 *= 2;
101 out_value5.write(tmp5);
109 tmp3 = tmp3*tmp5;
110 tmp4 = tmp4*tmp5;
111 tmp5
[all...]
/gem5/src/systemc/tests/systemc/misc/cae_test/general/arith/addition/sharing/
H A Dsharing.cpp46 sc_biguint<8> tmp5; local
67 tmp5 = in_value5.read();
74 tmp5 = tmp5 + 10;
82 out_value5.write(tmp5);
92 tmp5 = tmp5 + 1;
100 out_value5.write(tmp5);
/gem5/src/systemc/tests/systemc/misc/cae_test/general/bitwise/and/and_1/
H A Dand_1.cpp48 sc_biguint<8> tmp5; local
69 tmp5 = in_value5.read();
77 tmp5 = tmp5 & 0x0f & 0x15 ;
85 out_value5.write(tmp5);
97 tmp5 &= 0x03;
105 out_value5.write(tmp5);
/gem5/src/systemc/tests/systemc/misc/cae_test/general/bitwise/not/not_1/
H A Dnot_1.cpp48 sc_biguint<8> tmp5; local
69 tmp5 = in_value5.read();
77 tmp5 = ~ tmp5 ;
85 out_value5.write(tmp5);
97 tmp5 = ~(0x03);
105 out_value5.write(tmp5);
/gem5/src/systemc/tests/systemc/misc/cae_test/general/bitwise/or/or_1/
H A Dor_1.cpp48 sc_biguint<8> tmp5; local
69 tmp5 = in_value5.read();
77 tmp5 = tmp5 | 0x0f | 0x15 ;
85 out_value5.write(tmp5);
97 tmp5 |= 0x03;
105 out_value5.write(tmp5);
/gem5/src/systemc/tests/systemc/misc/cae_test/general/bitwise/xor/xor_1/
H A Dxor_1.cpp48 sc_biguint<8> tmp5; local
69 tmp5 = in_value5.read();
77 tmp5 = tmp5 ^ 0x0f ^ 0x15 ;
85 out_value5.write(tmp5);
97 tmp5 ^= 0x03;
105 out_value5.write(tmp5);
/gem5/src/systemc/tests/systemc/misc/cae_test/general/control/if_test/conditions/
H A Dconditions.cpp48 int tmp5; local
72 tmp5 = in_value5.read();
75 if ((tmp1==4) && (tmp2<6) || (tmp5+tmp4.to_int()==6)) {
96 tmp5 = in_value5.read();
99 cond_tmp = (tmp1==4) && (tmp2<6) || (tmp5+tmp4.to_int()==6);
111 (tmp5+tmp2.to_int()==6)?tmp2a:tmp1);
116 tmp5 = tmp2.to_int();
120 0:tmp5);
/gem5/src/systemc/tests/systemc/misc/cae_test/general/bitwise/and/datatypes/
H A Dstimulus.cpp51 short tmp5; local
62 tmp5 = 20000;
75 out_value5.write(tmp5);
82 << tmp5 << " " << tmp6 << " " << tmp7 << " " << tmp8 << " " << tmp9 << " " << tmp10 <<endl;
87 tmp5 = tmp5 + 6;
/gem5/src/systemc/tests/systemc/misc/cae_test/general/bitwise/not/datatypes/
H A Dstimulus.cpp51 short tmp5; local
62 tmp5 = 20000;
75 out_value5.write(tmp5);
82 << tmp5 << " " << tmp6 << " " << tmp7 << " " << tmp8 << " " << tmp9 << " " << tmp10 <<endl;
87 tmp5 = tmp5 + 6;
/gem5/src/systemc/tests/systemc/misc/cae_test/general/bitwise/xor/datatypes/
H A Dstimulus.cpp51 short tmp5; local
62 tmp5 = 20000;
75 out_value5.write(tmp5);
82 << tmp5 << " " << tmp6 << " " << tmp7 << " " << tmp8 << " " << tmp9 << " " << tmp10 <<endl;
87 tmp5 = tmp5 + 6;
/gem5/src/systemc/tests/systemc/misc/cae_test/general/arith/addition/bitwidth/
H A Dbitwidth.cpp46 sc_bigint<8> tmp5; local
68 tmp5 = in_value5.read();
79 tmp4 = tmp5 + tmp6;
89 out_value5.write(tmp5);
/gem5/src/systemc/tests/systemc/misc/cae_test/general/bitwise/shl/bitwidth/
H A Dbitwidth.cpp47 sc_bigint<8> tmp5; local
69 tmp5 = in_value5.read();
80 tmp4 = tmp5 << tmp6;
90 out_value5.write(tmp5);

Completed in 17 milliseconds

12