Searched refs:entry (Results 751 - 775 of 1230) sorted by relevance

<<31323334353637383940>>

/gem5/src/systemc/tests/systemc/tracing/vcd_trace/test02/
H A Dtest02.cpp55 SC_THREAD( entry );
63 void entry();
66 void proc1::entry() function in class:proc1
/gem5/src/systemc/tests/systemc/tracing/vcd_trace/test03/
H A Dtest03.cpp56 SC_THREAD( entry );
65 void entry();
68 void proc1::entry() function in class:proc1
/gem5/src/systemc/tests/systemc/tracing/vcd_trace/test04/
H A Dtest04.cpp56 SC_THREAD( entry );
65 void entry();
68 void proc1::entry() function in class:proc1
/gem5/src/systemc/tests/systemc/tracing/vcd_trace/test05/
H A Dtest05.cpp56 SC_THREAD( entry );
65 void entry();
68 void proc1::entry() function in class:proc1
/gem5/src/systemc/tests/systemc/tracing/vcd_trace/test07/
H A Dtest07.cpp58 SC_THREAD( entry );
66 void entry();
69 void proc1::entry() function in class:proc1
/gem5/src/systemc/tests/systemc/tracing/vcd_trace/test08/
H A Dtest08.cpp59 SC_THREAD( entry );
67 void entry();
70 void proc1::entry() function in class:proc1
/gem5/src/systemc/tests/systemc/tracing/vcd_trace/test09/
H A Dtest09.cpp59 SC_THREAD( entry );
67 void entry();
70 void proc1::entry() function in class:proc1
/gem5/src/systemc/tests/systemc/tracing/vcd_trace/test12/
H A Dtest12.cpp58 SC_THREAD( entry );
66 void entry();
69 void proc1::entry() function in class:proc1
/gem5/src/systemc/tests/systemc/tracing/wif_trace/test01/
H A Dtest01.cpp55 SC_THREAD( entry );
63 void entry();
66 void proc1::entry() function in class:proc1
/gem5/src/systemc/tests/systemc/tracing/wif_trace/test02/
H A Dtest02.cpp55 SC_THREAD( entry );
63 void entry();
66 void proc1::entry() function in class:proc1
/gem5/src/systemc/tests/systemc/tracing/wif_trace/test03/
H A Dtest03.cpp56 SC_THREAD( entry );
65 void entry();
68 void proc1::entry() function in class:proc1
/gem5/src/systemc/tests/systemc/tracing/wif_trace/test04/
H A Dtest04.cpp56 SC_THREAD( entry );
65 void entry();
68 void proc1::entry() function in class:proc1
/gem5/src/systemc/tests/systemc/tracing/wif_trace/test05/
H A Dtest05.cpp56 SC_THREAD( entry );
65 void entry();
68 void proc1::entry() function in class:proc1
/gem5/src/systemc/tests/systemc/tracing/wif_trace/test07/
H A Dtest07.cpp58 SC_THREAD( entry );
66 void entry();
69 void proc1::entry() function in class:proc1
/gem5/src/systemc/tests/systemc/tracing/wif_trace/test08/
H A Dtest08.cpp59 SC_THREAD( entry );
67 void entry();
70 void proc1::entry() function in class:proc1
/gem5/src/systemc/tests/systemc/tracing/wif_trace/test09/
H A Dtest09.cpp59 SC_THREAD( entry );
67 void entry();
70 void proc1::entry() function in class:proc1
/gem5/src/systemc/tests/systemc/tracing/wif_trace/test11/
H A Dtest11.cpp55 SC_THREAD( entry );
63 void entry();
66 void proc1::entry() function in class:proc1
/gem5/src/systemc/tests/systemc/tracing/wif_trace/test12/
H A Dtest12.cpp58 SC_THREAD( entry );
64 void entry();
67 void proc1::entry() function in class:proc1
/gem5/src/mem/cache/tags/indexing_policies/
H A Dbase.cc81 BaseIndexingPolicy::setEntry(ReplaceableEntry* entry, const uint64_t index) argument
83 // Calculate set and way from entry index
92 sets[set][way] = entry;
94 // Inform the entry its position
95 entry->setPosition(set, way);
/gem5/src/dev/x86/
H A Di82094aa.cc54 RedirTableEntry entry = 0; local
55 entry.mask = 1;
57 redirTable[i] = entry;
189 RedirTableEntry entry = redirTable[line];
190 if (entry.mask) {
195 message.destination = entry.dest;
196 if (entry.deliveryMode == DeliveryMode::ExtInt) {
200 message.vector = entry.vector;
202 message.deliveryMode = entry.deliveryMode;
203 message.destMode = entry
[all...]
/gem5/ext/systemc/src/sysc/utils/
H A Dsc_hash.cpp510 entry = 0;
517 entry = *last;
518 next = entry->next;
527 return (entry == 0);
533 if (entry) {
534 last = &(entry->next);
536 entry = next;
537 if (! entry) {
542 entry = *last;
543 next = entry
[all...]
/gem5/src/mem/cache/prefetch/
H A Dirregular_stream_buffer.cc75 // Training, if the entry exists, then we found a correlation between
76 // the entry lastAddress (named as correlated_addr_A) and the address of
78 TrainingUnitEntry *entry = trainingUnit.findEntry(pc, is_secure); local
82 if (entry != nullptr && entry->lastAddressSecure == is_secure) {
83 trainingUnit.accessEntry(entry);
85 correlated_addr_A = entry->lastAddress;
88 entry = trainingUnit.findVictim(pc);
89 assert(entry != nullptr);
91 trainingUnit.insertEntry(pc, is_secure, entry);
[all...]
/gem5/src/arch/x86/bios/
H A DIntelMP.py73 def add_entry(self, entry):
74 if isinstance(entry, X86IntelMPBaseConfigEntry):
75 self.base_entries.append(entry)
76 elif isinstance(entry, X86IntelMPExtConfigEntry):
77 self.ext_entries.append(entry)
79 panic("Don't know what type of Intel MP entry %s is." \
80 % entry.__class__.__name__)
/gem5/src/systemc/tests/systemc/misc/communication/channel/hwsw/
H A Dhwsw.cpp70 SC_THREAD( entry );
75 void entry();
84 void adder_sub::entry() function in class:adder_sub
106 } // end of entry function
131 SC_THREAD( entry );
136 void entry();
140 void testbench::entry() function in class:testbench
163 } // end of entry function
/gem5/src/systemc/tests/systemc/misc/sim_tests/popc/
H A Dpopc.cpp70 SC_CTHREAD( entry, clk.pos() );
74 void entry();
115 SC_CTHREAD( entry, clk.pos() );
122 void entry();
130 void proc1::entry() function in class:proc1
175 void proc2::entry() function in class:proc2

Completed in 13 milliseconds

<<31323334353637383940>>