Searched refs:tmp_a (Results 1 - 25 of 42) sorted by relevance

12

/gem5/src/systemc/tests/systemc/misc/examples/datawidth_int_file/
H A Ddatawidth.cpp47 int tmp_a; local
57 tmp_a = in1.read();
59 tmp_result = tmp_a + tmp_b;
/gem5/src/systemc/tests/systemc/misc/unit/data/general/concat_port/
H A Dconcat_port.cpp47 bool_vector8 tmp_a; local
55 tmp_a = a.read();
60 case 0: c.write( (tmp_a.range(7,4), tmp_b.range(7,4)) );
61 d.write( (tmp_a, tmp_b) );
64 case 1: c.write( (tmp_a.range(0,7)) );
65 d.write( (tmp_a.range(0,7), tmp_b.range(0,7)) );
68 case 2: c.write( (tmp_a[0], tmp_b.range(1,4), tmp_a.range(7,5)) );
69 d.write( (tmp_a.range(7,4), tmp_b.range(7,4),
70 tmp_a
[all...]
/gem5/src/systemc/tests/systemc/misc/unit/data/general/datawidth_int/
H A Ddatawidth.cpp47 int tmp_a; local
57 tmp_a = in1.read();
59 tmp_result = tmp_a + tmp_b;
/gem5/src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_signed/bits_to_bits/
H A Ddatawidth.cpp47 bool_vector6 tmp_a; local
57 tmp_a = in1.read();
60 tmp_result = tmp_a.to_int() + tmp_b.to_int();
/gem5/src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_signed/extension/
H A Ddatawidth.cpp47 bool_vector6 tmp_a; local
57 tmp_a = in1.read();
59 tmp_result = tmp_a.to_int() + tmp_b.to_int();
/gem5/src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_signed/lost_carry/
H A Ddatawidth.cpp47 bool_vector tmp_a; local
57 tmp_a = in1.read();
59 tmp_result = tmp_a.to_int() + tmp_b.to_int();
/gem5/src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_signed/promote/
H A Ddatawidth.cpp47 bool_vector4 tmp_a; local
57 tmp_a = in1.read();
59 tmp_result = tmp_a.to_int() + tmp_b.to_int();
/gem5/src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_signed/promote_extension/
H A Ddatawidth.cpp47 bool_vector4 tmp_a; local
57 tmp_a = in1.read();
59 tmp_result = tmp_a.to_int() + tmp_b.to_int();
/gem5/src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_signed/promote_lost_carry/
H A Ddatawidth.cpp47 bool_vector4 tmp_a; local
57 tmp_a = in1.read();
59 tmp_result = tmp_a.to_int() + tmp_b.to_int();
/gem5/src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_signed/promote_truncation/
H A Ddatawidth.cpp47 bool_vector4 tmp_a; local
57 tmp_a = in1.read();
59 tmp_result = tmp_a.to_int() + tmp_b.to_int();
/gem5/src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_signed/truncation/
H A Ddatawidth.cpp47 bool_vector6 tmp_a; local
57 tmp_a = in1.read();
59 tmp_result = tmp_a.to_int() + tmp_b.to_int();
/gem5/src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_unsigned/bits_to_bits/
H A Ddatawidth.cpp47 bool_vector6 tmp_a; local
57 tmp_a = in1.read();
59 tmp_result = tmp_a.to_uint() + tmp_b.to_uint();
/gem5/src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_unsigned/extension/
H A Ddatawidth.cpp47 bool_vector6 tmp_a; local
57 tmp_a = in1.read();
59 tmp_result = tmp_a.to_uint() + tmp_b.to_uint();
/gem5/src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_unsigned/lost_carry/
H A Ddatawidth.cpp47 bool_vector tmp_a; local
57 tmp_a = in1.read();
59 tmp_result = tmp_a.to_uint() + tmp_b.to_uint();
/gem5/src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_unsigned/promote/
H A Ddatawidth.cpp47 bool_vector4 tmp_a; local
57 tmp_a = in1.read();
59 tmp_result = tmp_a.to_uint() + tmp_b.to_uint();
/gem5/src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_unsigned/promote_extension/
H A Ddatawidth.cpp47 bool_vector4 tmp_a; local
57 tmp_a = in1.read();
59 tmp_result = tmp_a.to_uint() + tmp_b.to_uint();
/gem5/src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_unsigned/promote_lost_carry/
H A Ddatawidth.cpp47 bool_vector4 tmp_a; local
57 tmp_a = in1.read();
59 tmp_result = tmp_a.to_uint() + tmp_b.to_uint();
/gem5/src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_unsigned/promote_truncation/
H A Ddatawidth.cpp47 bool_vector6 tmp_a; local
57 tmp_a = in1.read();
59 tmp_result = tmp_a.to_uint() + tmp_b.to_uint();
/gem5/src/systemc/tests/systemc/misc/unit/data/datawidth_bool_to_unsigned/truncation/
H A Ddatawidth.cpp47 bool_vector6 tmp_a; local
57 tmp_a = in1.read();
59 tmp_result = tmp_a.to_uint() + tmp_b.to_uint();
/gem5/src/systemc/tests/systemc/misc/unit/data/datawidth_signed/bits_to_bits/
H A Ddatawidth.cpp47 sc_signed tmp_a (in1_width);
57 tmp_a = in1.read();
59 tmp_result = tmp_a + tmp_b;
/gem5/src/systemc/tests/systemc/misc/unit/data/datawidth_signed/extension/
H A Ddatawidth.cpp47 sc_signed tmp_a (in1_width);
57 tmp_a = in1.read();
59 tmp_result = tmp_a + tmp_b;
/gem5/src/systemc/tests/systemc/misc/unit/data/datawidth_signed/lost_carry/
H A Ddatawidth.cpp47 sc_signed tmp_a (in1_width);
57 tmp_a = in1.read();
59 tmp_result = tmp_a + tmp_b;
/gem5/src/systemc/tests/systemc/misc/unit/data/datawidth_signed/promote/
H A Ddatawidth.cpp47 sc_signed tmp_a (in1_width);
57 tmp_a = in1.read();
59 tmp_result = tmp_a + tmp_b;
/gem5/src/systemc/tests/systemc/misc/unit/data/datawidth_signed/promote_extension/
H A Ddatawidth.cpp47 sc_signed tmp_a (in1_width);
57 tmp_a = in1.read();
59 tmp_result = tmp_a + tmp_b;
/gem5/src/systemc/tests/systemc/misc/unit/data/datawidth_signed/promote_lost_carry/
H A Ddatawidth.cpp47 sc_signed tmp_a (in1_width);
57 tmp_a = in1.read();
59 tmp_result = tmp_a + tmp_b;

Completed in 14 milliseconds

12