Searched refs:entry (Results 76 - 100 of 1230) sorted by relevance

1234567891011>>

/gem5/src/systemc/tests/systemc/misc/sim_tests/tri_state2/
H A Ddisplay.h54 SC_METHOD( entry );
59 void entry();
/gem5/src/systemc/tests/systemc/misc/user_guide/chpt6.1/
H A Ddisplay.h54 SC_METHOD( entry );
60 void entry();
/gem5/src/systemc/tests/systemc/misc/user_guide/chpt7.1/
H A Dtestbench.h54 SC_CTHREAD( entry, clk.pos() );
58 void entry();
/gem5/src/systemc/tests/systemc/misc/communication/signals/bool/
H A Dproc2.cpp41 proc2::entry() function in class:proc2
/gem5/src/systemc/tests/systemc/misc/communication/signals/float/
H A Dproc1.cpp41 proc1::entry() function in class:proc1
H A Dproc2.cpp41 proc2::entry() function in class:proc2
/gem5/src/systemc/tests/systemc/misc/communication/signals/int/
H A Dproc2.cpp41 proc2::entry() function in class:proc2
/gem5/src/systemc/tests/systemc/misc/communication/signals/unsigned/
H A Dproc2.cpp41 proc2::entry() function in class:proc2
/gem5/src/systemc/tests/systemc/misc/sim/prime_do_while/
H A Dreset.cpp44 void resetp::entry() function in class:resetp
/gem5/src/systemc/tests/systemc/misc/synth/directives/resource/misc/test1/
H A Dtest1.cpp41 void t::entry() function in class:t
/gem5/src/systemc/tests/systemc/misc/synth/directives/translate_on/test2/
H A Dtest.cpp47 void test::entry() function in class:test
/gem5/src/systemc/tests/systemc/misc/synth/directives/translate_on/test4/
H A Dtest.cpp47 void test::entry() function in class:test
/gem5/src/systemc/tests/systemc/misc/synth/prime_flag/
H A Dreset.cpp44 void resetp::entry() function in class:resetp
/gem5/src/systemc/tests/systemc/misc/synth/wait_until/misc/test1/
H A Dtest1.cpp40 void t::entry() function in class:t
/gem5/src/systemc/tests/systemc/misc/synth/wait_until/misc/test2/
H A Dtest2.cpp40 void t::entry() function in class:t
/gem5/src/systemc/tests/systemc/misc/user_guide/chpt3.2/
H A Dcounter.cpp42 void counter::entry() function in class:counter
/gem5/src/systemc/tests/systemc/misc/stars/wif_trace/star115332/
H A Dflop.h47 SC_CTHREAD(entry,clk.pos() );
50 void entry();
56 void flop::entry() function in class:flop
/gem5/src/systemc/tests/systemc/misc/unit/control/posedge/
H A Dstim.h63 SC_CTHREAD( entry, clk.pos() );
67 void entry();
72 STIM::entry() function in class:STIM
/gem5/src/systemc/tests/systemc/misc/unit/control/wait_until/
H A Dwait_rdy.h59 SC_CTHREAD( entry, clk.pos() );
62 void entry();
67 WAIT_RDY::entry() function in class:WAIT_RDY
/gem5/src/systemc/tests/systemc/misc/unit/extern/
H A Dextern.cpp48 SC_CTHREAD(entry, clk.pos());
51 void entry();
55 foo::entry() function in class:foo
/gem5/src/systemc/tests/systemc/misc/unit/extern2/
H A Dextern2.cpp48 SC_CTHREAD(entry, clk.pos());
51 void entry();
55 foo::entry() function in class:foo
/gem5/src/arch/alpha/
H A Dpagetable.hh66 PageTableEntry(uint64_t e) : entry(e) {}
67 uint64_t entry; member in struct:AlphaISA::PageTableEntry
68 operator uint64_t() const { return entry; }
69 const PageTableEntry &operator=(uint64_t e) { entry = e; return *this; }
71 { entry = e.entry; return *this; }
73 Addr _pfn() const { return (entry >> 32) & 0xffffffff; }
74 Addr _sw() const { return (entry >> 16) & 0xffff; }
75 int _rsv0() const { return (entry >> 14) & 0x3; }
76 bool _uwe() const { return (entry >> 1
[all...]
/gem5/src/mem/cache/
H A Dqueue.hh104 typename Entry::Iterator addToReadyList(Entry* entry) argument
107 readyList.back()->readyTime <= entry->readyTime) {
108 return readyList.insert(readyList.end(), entry);
112 if ((*i)->readyTime > entry->readyTime) {
113 return readyList.insert(i, entry);
159 * Find the first entry that matches the provided address.
169 for (const auto& entry : allocatedList) {
176 if (!(ignore_uncacheable && entry->isUncacheable()) &&
177 entry->matchBlockAddr(blk_addr, is_secure)) {
178 return entry;
238 deallocate(Entry *entry) argument
[all...]
/gem5/src/systemc/tests/tlm/multi_sockets/
H A DextensionPool.h25 struct entry{ struct in class:ExtensionPool
27 entry(T* content){ function in struct:ExtensionPool::entry
32 entry* next;
37 unused=new entry(new T()); //create first one
40 entry* e=new entry(new T());
55 entry* e=unused;
62 entry* e=used;
76 entry* e;
78 e=new entry(ne
[all...]
/gem5/src/mem/cache/prefetch/
H A Dassociative_set_impl.hh48 Entry* entry = &entries[entry_idx]; local
49 indexingPolicy->setEntry(entry, entry_idx);
50 entry->replacementData = replacementPolicy->instantiateEntry();
63 Entry* entry = static_cast<Entry *>(location); local
64 if ((entry->getTag() == tag) && entry->isValid() &&
65 entry->isSecure() == is_secure) {
66 return entry;
74 AssociativeSet<Entry>::accessEntry(Entry *entry) argument
76 replacementPolicy->touch(entry
111 insertEntry(Addr addr, bool is_secure, Entry* entry) argument
[all...]

Completed in 17 milliseconds

1234567891011>>