Searched refs:map (Results 51 - 75 of 198) sorted by relevance

12345678

/gem5/src/sim/
H A Dcxx_manager.hh56 #include <map>
114 std::map<std::string, SimObject *> objectsByName;
117 std::map<std::string, CxxConfigParams *> objectParamsByName;
300 /** Get the resolver used to map SimObject names to SimObjects for
H A DProcess.py39 def map(self, vaddr, paddr, size, cacheable=False): member in class:Process
69 code('bool map(Addr vaddr, Addr paddr, int sz, bool cacheable=true);')
/gem5/src/arch/sparc/
H A Dtlb_map.hh34 #include <map>
44 typedef std::map<TlbRange, TlbEntry*> RangeMap;
H A Dremote_gdb.hh36 #include <map>
/gem5/src/base/
H A Ddebug.hh35 #include <map>
125 typedef std::map<std::string, Flag *> FlagsMap;
/gem5/src/base/loader/
H A Dsymtab.hh36 #include <map>
46 typedef std::map<std::string, Addr> STable;
90 // There are potentially multiple symbols that map to the same
/gem5/src/systemc/ext/dt/fx/
H A Dsc_context.hh61 #include <map>
106 std::map<void *, const T *> m_map;
/gem5/src/dev/net/
H A Detherswitch.hh39 #include <map>
190 std::map<uint64_t, SwitchTableEntry> forwardingTable;
/gem5/ext/googletest/googlemock/test/
H A Dgmock-generated-function-mockers_test.cc45 #include <map>
104 virtual int TypeWithComma(const std::map<int, string>& a_map) = 0;
146 MOCK_METHOD0(ReturnTypeWithComma, std::map<int, string>());
148 std::map<int, string>(int)); // NOLINT
160 MOCK_METHOD1(TypeWithComma, int(const std::map<int, string>&)); // NOLINT
172 std::map<int, string>());
294 const std::map<int, string> a_map;
344 const std::map<int, string> a_map;
408 MOCK_METHOD0_T(ReturnTypeWithComma, std::map<int, int>());
409 MOCK_CONST_METHOD1_T(ReturnTypeWithComma, std::map<in
[all...]
/gem5/ext/dsent/libutil/
H A DConfig.cc31 void readFile(const char *filename_, map<String, String> &config)
/gem5/ext/dsent/tech/
H A DTechModel.h91 // A map of model's parameters
92 std::map<String, String> params;
/gem5/ext/sst/
H A DExtSlave.hh97 typedef std::map<Event::id_type, ::Packet*> PacketMap_t;
/gem5/ext/systemc/src/tlm_utils/
H A Dpeq_with_get.h29 #include <map>
/gem5/src/arch/alpha/
H A Dkernel_stats.hh35 #include <map>
/gem5/util/plot_dram/
H A DPlotPowerStates.py216 l1 = ax.bar(ind, map(lambda x : idleResults[x], States), width)
256 l_states[state] = map(lambda x: results[delay][bank_util][x][state],
263 l_states[state] = map(lambda x:
285 fig.legend(map(lambda x: p_states[x], states_list), states_list,
/gem5/src/gpu-compute/
H A Dglobal_memory_pipeline.hh160 std::map<uint64_t, std::pair<GPUDynInstPtr, bool>> gmOrderedRespBuffer;
/gem5/configs/common/
H A DSysPaths.py56 paths = map(os.path.expanduser, paths)
/gem5/src/arch/arm/
H A Dsemihosting.hh43 #include <map>
351 static const std::map<uint32_t, SemiCall> calls;
353 static const std::map<uint64_t, const char *> exitCodes;
355 static const std::map<const std::string, FILE *> stdioMap;
/gem5/src/systemc/ext/tlm_utils/
H A Dpeq_with_get.h27 #include <map>
/gem5/src/cpu/testers/garnet_synthetic_traffic/
H A DGarnetSyntheticTraffic.hh114 std::map<std::string, TrafficType> trafficStringToEnum;
/gem5/src/mem/
H A Dexternal_master.cc51 std::map<std::string, ExternalMaster::Handler *>
/gem5/src/python/pybind11/
H A Ddebug.cc48 #include <map>
/gem5/src/base/stats/
H A Dgroup.cc118 const std::map<std::string, Group *> &
/gem5/src/dev/x86/
H A Di82094aa.hh34 #include <map>
/gem5/ext/testlib/
H A Dhelper.py185 self.map = {} # key --> [key, prev, next]
190 return len(self.map)
193 return key in self.map
196 if key not in self.map:
199 curr[2] = end[1] = self.map[key] = [key, curr, end]
206 if key in self.map:
207 key, prev, next = self.map.pop(key)

Completed in 28 milliseconds

12345678