Searched refs:now_p (Results 1 - 4 of 4) sorted by relevance

/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_runnable_int.h328 sc_method_handle now_p; // Method now checking. local
329 sc_method_handle prior_p; // Method prior to now_p.
338 for ( now_p = m_methods_push_head; now_p!= SC_NO_METHODS;
339 now_p = now_p->next_runnable() )
341 if ( remove_p == now_p )
343 prior_p->set_next_runnable( now_p->next_runnable() );
344 if (now_p == m_methods_push_tail) {
347 now_p
385 sc_thread_handle now_p; // Thread now checking. local
[all...]
H A Dsc_reset.cpp166 sc_reset_finder* now_p; // Finder currently processing. local
170 for ( now_p = reset_finder_q; now_p; now_p = next_p )
172 next_p = now_p->m_next_p;
173 if ( now_p->m_in_p )
176 now_p->m_in_p->get_interface());
178 else if ( now_p->m_inout_p )
181 now_p->m_inout_p->get_interface());
186 now_p
[all...]
H A Dsc_simcontext.cpp207 sc_method_handle now_p; // Entry now examining. local
211 for ( now_p = m_method_q; now_p; now_p = now_p->next_exist() )
213 if ( now_p == handle_ )
216 prior_p->set_next_exist( now_p->next_exist() );
218 m_method_q = now_p->next_exist();
228 sc_thread_handle now_p; // Entry now examining. local
232 for ( now_p
[all...]
/gem5/ext/systemc/src/sysc/communication/
H A Dsc_prim_channel.cpp283 sc_prim_channel* now_p; // Update now performing. local
287 now_p = m_update_list_p;
289 for ( ; now_p != (sc_prim_channel*)sc_prim_channel::list_end;
290 now_p = next_p )
292 next_p = now_p->m_update_next_p;
293 now_p->perform_update();

Completed in 10 milliseconds