Searched full:foo* (Results 51 - 75 of 234) sorted by relevance

12345678910

/gem5/src/systemc/tests/systemc/misc/semantic/2.3/T_2_3_5_1/
H A DT_2_3_5_1.cpp49 foobar1( const sc_signed& a, function
56 foobar2( const sc_unsigned& a, function
63 foobar3( const sc_bv_base& a, function
70 foobar4( const sc_lv_base& a, function
/gem5/src/systemc/tests/systemc/misc/semantic/2.4/
H A DT_2_4_1_1.cpp49 foobar1( const sc_signed& a, function
56 foobar2( const sc_unsigned& a, function
63 foobar3( const sc_bv_base& a, function
70 foobar4( const sc_lv_base& a, function
/gem5/src/systemc/tests/systemc/misc/semantic/2.5/
H A DT_2_5_1_1.cpp49 foobar1( const sc_signed& a, function
56 foobar2( const sc_unsigned& a, function
63 foobar3( const sc_bv_base& a, function
70 foobar4( const sc_lv_base& a, function
/gem5/src/systemc/tests/systemc/misc/stars/star110668/
H A Dstar110668.cpp54 dummy_struct foofoo; local
57 foofoo.val1.range(0,7) = data_in;
58 output.write(foofoo.val2.range(8,15));
/gem5/src/systemc/tests/systemc/misc/stars/star123845/
H A Dtest.cpp47 sc_trace_file* tf = sc_create_vcd_trace_file( "foobar" );
/gem5/src/systemc/tests/systemc/misc/stars/star127848/
H A Dtest.cpp43 sc_bv<8> foo = "11001100"; local
44 cout << foo << endl;
45 sc_bv<5> a = foo.range( 4, 0 );
46 sc_bv<5> b = foo.range( 0, 4 );
50 sc_bv<8> bar = foo;
51 foo.range( 0, 6 ) = foo.range( 1, 7 );
52 cout << foo << endl;
53 foo = bar;
54 foo
[all...]
/gem5/src/systemc/tests/systemc/misc/stars/vcd_trace/star126273/
H A Dtest.cpp55 // class foo: sc_module {
56 class foo: public sc_module { class in inherits:sc_module
61 SC_CTOR(foo) {
68 cout << "foo: clk1 + " << sc_time_stamp() << endl;
71 cout << "foo: clk2 + " << sc_time_stamp() << endl;
83 foo FOO("FOO");
85 FOO.clk1(clk1);
86 FOO
[all...]
/gem5/src/systemc/tests/systemc/misc/synth/directives/line_label/test5/
H A Dtest.cpp56 foobart: i = 7;
/gem5/src/systemc/tests/systemc/misc/synth/directives/line_label/test6/
H A Dtest.cpp57 foobart: i = 7;
/gem5/src/systemc/tests/systemc/misc/synth/directives/line_label/test7/
H A Dtest.cpp57 foobart: i = 7;
/gem5/src/systemc/tests/systemc/misc/synth/directives/line_label/test8/
H A Dtest.cpp58 foobart: i = 7;
/gem5/src/systemc/tests/systemc/misc/synth/directives/misc/test5/
H A Dtest.cpp47 int foobar (int a);
59 y = foobar (z);
66 int foobar (int a) function
/gem5/src/systemc/tests/systemc/misc/synth/directives/misc/test6/
H A Dtest.cpp47 int foobar (int a, int b) function
71 foobar (z,y);
72 foobar ( z,y);
73 y = foobar (z,y);
74 y = foobar ( z, y);
75 y = foobar (
77 y = foobar (z,y);
78 y = foobar (z,y)
80 y = foobar (z,y);
81 y = foobar (fooba
[all...]
/gem5/src/systemc/tests/systemc/misc/synth/directives/translate_on/test1/
H A Dtest.cpp54 foobart: i = 7;
/gem5/src/systemc/tests/systemc/misc/unit/data/general/subvector/stab1/
H A Dstab1.cpp110 sc_bv<225> foo; local
111 sc_bv<225> foo1; local
112 foo = x.range(i + 224, i);
113 foo1 = x.range(i, i + 224);
115 sc_assert( foo[j] == x[i + j] );
116 sc_assert( foo1[224 - j] == x[i + j] );
/gem5/src/systemc/tests/systemc/misc/unit/data/general/subvector/stab2/
H A Dstab2.cpp110 sc_bv<225> foo; local
111 sc_bv<225> foo1; local
112 sc_bv<450> foo2; local
113 foo = x.range(i + 224, i);
114 foo1 = x.range(i, i + 224);
115 foo2 = (foo1, foo);
117 sc_assert( foo[j] == x[i + j] );
118 sc_assert( foo1[22
[all...]
/gem5/src/systemc/tests/systemc/misc/unit/data/general/subvector/stab3/
H A Dstab3.cpp110 sc_bv<225> foo; local
111 sc_bv<225> foo1; local
112 sc_bv<450> foo2; local
113 foo = x.range(i + 224, i);
114 foo1 = x.range(i, i + 224);
115 foo2 = (foo1, foo);
117 sc_assert( foo[j] == x[i + j] );
118 sc_assert( foo1[22
131 sc_bv<230> foo3; local
[all...]
/gem5/src/systemc/tests/systemc/misc/unit/extern/
H A Dextern.cpp41 struct foo : sc_module { struct in inherits:sc_module
47 SC_CTOR(foo) {
55 foo::entry()
/gem5/src/systemc/tests/systemc/misc/unit/extern2/
H A Dextern2.cpp41 struct foo : sc_module { struct in inherits:sc_module
47 SC_CTOR(foo) {
55 foo::entry()
/gem5/src/systemc/tests/systemc/tracing/vcd_trace/test13/
H A Dtest13.cpp11 void foo() function in class:Mod
19 } // foo()
23 SC_METHOD(foo);
/gem5/src/systemc/tests/systemc/tracing/vcd_trace/test14/
H A Dtest14.cpp19 void foo() function in class:Mod
25 } // foo()
29 SC_METHOD(foo);
/gem5/src/systemc/tests/systemc/utils/sc_vector/test08/golden/
H A Dtest08.log6 Error: (E808) sc_vector::get_elements called for element type not derived from sc_object: foo
/gem5/src/systemc/tests/systemc/utils/sc_vector/test08/
H A Dtest08.cpp31 struct foo struct
34 foo( const char* nm ) function in struct:foo
50 sc_vector< foo > foo_vec( "foo", 1 );
52 sc_assert( foo_vec.size() == 1 );
53 sc_assert( sc_assemble_vector( foo_vec, &foo::name ).size() == 1 );
55 sc_assert( sc_assemble_vector( foo_vec, &foo
[all...]
/gem5/src/systemc/tests/tlm/cancel_all/
H A Dcancel_all.cpp83 : m_peq("foo"), flag3(true), flag4(true)
/gem5/
H A DCONTRIBUTING.md252 remote: ERROR: [fb1366b] missing Change-Id in commit message footer

Completed in 19 milliseconds

12345678910