Searched refs:h2 (Results 1 - 6 of 6) sorted by relevance

/gem5/src/systemc/tests/systemc/tmp/compliance_1666_2011/section_6.6/test01/
H A Dtest01.cpp53 h2 = sc_get_current_process_handle();
58 sc_process_handle h1, h2; local
73 h2.suspend();
76 h2.resume();
80 h2.disable();
83 h2.enable();
/gem5/src/systemc/tests/systemc/compliance_1666/test203a/
H A Dtest203a.cpp69 sc_process_handle h2 = sc_get_current_process_handle(); local
70 sc_assert(h2.valid() == true);
71 sc_assert(strcmp(h2.name(), "top.m.T") == 0);
72 sc_assert(h2.proc_kind() == SC_THREAD_PROC_);
73 sc_assert(h2.get_process_object() != 0);
74 std::vector<sc_object*> children2 = h2.get_child_objects();
76 sc_assert(h2.get_parent_object() == this);
77 sc_assert(h2.terminated() == false);
78 sc_assert(h2.dynamic() == false);
79 sc_assert(h2
207 sc_process_handle h2 = sc_get_current_process_handle(); local
226 sc_process_handle h2 = sc_get_current_process_handle(); local
[all...]
/gem5/src/systemc/tests/systemc/compliance_1666/test203b/
H A Dtest203b.cpp21 sc_process_handle h2 = sc_spawn(sc_bind(&M::proc, this, 3)); local
24 wait(h1.terminated_event() & h2.terminated_event() & h3.terminated_event());
27 if (h2.valid()) sc_assert (h2.terminated());
31 h2 = sc_spawn(sc_bind(&M::proc, this, 30));
34 wait(h1.terminated_event() | h2.terminated_event() | h3.terminated_event());
36 sc_assert(h2.valid());
37 sc_assert( !h2.terminated() );
41 wait(h2.terminated_event() & h3.terminated_event());
/gem5/src/systemc/tests/systemc/1666-2011-compliance/odds_and_ends/
H A Dodds_and_ends.cpp48 h2 = sc_get_current_process_handle();
56 sensitive << h2.reset_event();
60 sensitive << h2.terminated_event();
69 sc_process_handle h1, h2; local
85 h2.suspend();
88 h2.resume();
92 h2.disable();
95 h2.enable();
98 h2.reset();
101 h2
[all...]
/gem5/ext/ply/doc/
H A Dmakedoc.py63 h2 = re.compile(r".*?<H2>(<a.*a>)*[\d\.\s]*(.*?)</H2>", re.IGNORECASE) variable
97 m = h2.match(s)
/gem5/src/systemc/tests/systemc/compliance_1666/test208/
H A Dtest208.cpp114 sc_process_handle h2 = sc_spawn(sc_bind(&M::dynamic_proc2, this), "dynamic_proc2"); local
121 sc_assert (children[2] == h2.get_process_object());

Completed in 9 milliseconds