Searched refs:loc (Results 1 - 10 of 10) sorted by relevance

/gem5/src/base/gtest/
H A Dlogging.cc52 void log(const Loc &loc, std::string s) override { SUCCEED() << s; }
62 log(const Loc &loc, std::string s) override
64 ADD_FAILURE_AT(loc.file, loc.line) << s;
/gem5/src/base/
H A Dlogging.cc58 void log(const Loc &loc, std::string s) override { std::cerr << s; }
68 log(const Loc &loc, std::string s) override
72 NormalLogger::log(loc, s + ss.str());
H A Dlogging.hh96 print(const Loc &loc, const std::string &str) argument
104 log(loc, ss.str());
108 print(const Loc &loc, const char *format, const Args &...args) argument
112 print(loc, ss.str());
116 print(const Loc &loc, const std::string &format, const Args &...args) argument
118 print(loc, format.c_str(), args...);
129 virtual void log(const Loc &loc, std::string s) = 0;
/gem5/src/mem/ruby/structures/
H A DCacheMemory.cc169 int loc = findTagInSet(cacheSet, address); local
170 if (loc != -1) {
172 AbstractCacheEntry* entry = m_cache[cacheSet][loc];
173 m_replacementPolicy_ptr->touch(cacheSet, loc, curTick());
196 int loc = findTagInSet(cacheSet, address); local
198 if (loc != -1) {
200 AbstractCacheEntry* entry = m_cache[cacheSet][loc];
201 m_replacementPolicy_ptr->touch(cacheSet, loc, curTick());
204 return m_cache[cacheSet][loc]->m_Permission !=
218 int loc local
301 int loc = findTagInSet(cacheSet, address); local
327 int loc = findTagInSet(cacheSet, address); local
338 int loc = findTagInSet(cacheSet, address); local
348 int loc = findTagInSet(cacheSet, address); local
358 uint32_t loc = e->getWayIndex(); local
366 int loc = findTagInSet(cacheSet, address); local
380 getReplacementWeight(int64_t set, int64_t loc) argument
[all...]
H A DCacheMemory.hh101 bool isBlockInvalid(int64_t cache_set, int64_t loc);
102 bool isBlockNotBusy(int64_t cache_set, int64_t loc);
110 int getReplacementWeight(int64_t set, int64_t loc);
/gem5/src/base/stats/
H A Dhdf5.hh105 * @param loc Parent location in the file.
109 void addMetaData(H5::DataSet &loc, const char *name,
115 * @param loc Parent location in the file.
119 void addMetaData(H5::DataSet &loc, const char *name,
125 * @param loc Parent location in the file.
129 void addMetaData(H5::DataSet &loc, const char *name,
135 * @param loc Parent location in the file.
139 void addMetaData(H5::DataSet &loc, const char *name, double value);
H A Dhdf5.cc274 Hdf5::addMetaData(H5::DataSet &loc, const char *name, argument
280 H5::Attribute attribute = loc.createAttribute(name, type, space);
285 Hdf5::addMetaData(H5::DataSet &loc, const char *name, argument
292 addMetaData(loc, name, cstrs);
296 Hdf5::addMetaData(H5::DataSet &loc, const char *name, argument
302 H5::Attribute attribute = loc.createAttribute(name, type, space);
307 Hdf5::addMetaData(H5::DataSet &loc, const char *name, double value) argument
311 H5::Attribute attribute = loc.createAttribute(
/gem5/src/dev/arm/
H A DRealView.py591 def setupBootLoader(self, mem_bus, cur_sys, loc):
597 cur_sys.boot_loader = loc('boot.arm')
875 def setupBootLoader(self, mem_bus, cur_sys, loc):
881 cur_sys.boot_loader = loc('boot_emm.arm')
894 def setupBootLoader(self, mem_bus, cur_sys, loc):
900 cur_sys.boot_loader = loc('boot_emm.arm64')
1074 def setupBootLoader(self, mem_bus, cur_sys, loc):
1080 cur_sys.boot_loader = [ loc('boot_emm.arm64'), loc('boot_emm.arm') ]
1139 def setupBootLoader(self, mem_bus, cur_sys, loc)
[all...]
/gem5/ext/googletest/googlemock/src/
H A Dgmock-spec-builders.cc390 ::std::stringstream loc; member in namespace:testing::internal
420 untyped_expectation->DescribeLocationTo(&loc);
441 Log(kInfo, loc.str() + ss.str(), 2);
/gem5/ext/googletest/googletest/scripts/
H A Dpump.py718 loc = line.find('//')
719 before_comment = line[:loc].rstrip()
721 indent = loc
727 comment = line[loc + 2:].strip()

Completed in 23 milliseconds