Searched refs:found (Results 26 - 41 of 41) sorted by relevance

12

/gem5/src/sim/power/
H A Dthermal_model.cc263 bool found = false; local
266 found = true;
269 if (!found)
/gem5/src/mem/
H A Dstack_dist_calc.cc373 // If found take address and Lookup in tree
374 // Update tree from leaves by making B(found index) = 0
391 // the r_index value found above. This function would return
444 %#lx is %#lx but found %#lx",
472 // If found take address and Lookup in tree
487 // the r_index value found above. This function would return
502 %#lx is %#lx but found %#lx",
536 bool found = false; local
542 found = true;
549 if (found) {
[all...]
/gem5/src/mem/cache/prefetch/
H A Dqueued.cc309 bool found = false; local
311 for (it = queue.begin(); it != queue.end() && !found; it++) {
312 found = it->pfInfo.sameAddr(pfi);
337 return found;
/gem5/ext/googletest/googlemock/src/
H A Dgmock-spec-builders.cc399 const bool found = untyped_expectation != NULL; member in namespace:testing::internal
405 !found || is_excessive || LogIsVisible(kInfo);
419 if (found && !is_excessive) {
431 if (!found) {
581 << " found at program exit.\n";
/gem5/src/cpu/
H A DBaseCPU.py321 platform, found = self.system.unproxy(self).find_any(Platform)
322 if found:
325 warn("Platform not found for device tree generation; " \
H A Dbase.cc179 const char *cause = "simpoint starting point found";
804 bool found = debugSymbolTable->findNearestSymbol(pc, sym_str,
808 if (!found) {
809 // no symbol found: use addr as label
/gem5/src/base/loader/
H A Delf_object.cc176 // we have found a ABI note section
199 } // if section found
225 // Check if we've found the segment with the headers in it
387 // should have found at least one loadable segment
422 bool found = false; local
428 found = true;
455 return found;
/gem5/src/python/m5/ext/pyfdt/
H A Dpyfdt.py814 found = None
819 found = node
821 if found is None:
823 curnode = found
/gem5/src/cpu/pred/
H A Dmultiperspective_perceptron.cc493 bool found; local
499 found = false;
512 // we have found a weight that if we blow
535 found = true;
538 } while (found && round_counter < extra_rounds);
/gem5/src/cpu/trace/
H A Dtrace_cpu.cc131 inform("%s: Time offset (tick) found as min of both traces is %lli.\n",
414 // If the parent is found, it is yet to be executed. Append a
421 // The dependency is not found in the graph. So consider
833 // node till the position to insert the new node is found.
834 bool found = false; local
835 while (!found && itr != readyList.end()) {
839 found = true;
846 found = true;
1372 // If register dependency is found, make it zero and return true
1382 // Return false if the dependency is not found
[all...]
/gem5/ext/pybind11/include/pybind11/detail/
H A Dcommon.h7 BSD-style license that can be found in the LICENSE file.
561 static constexpr auto found = constexpr_sum(Predicate<Ts>::value...); member in struct:exactly_one
562 static_assert(found <= 1, "Found more than one type matching the predicate");
564 static constexpr auto index = found ? constexpr_first<Predicate, Ts...>() : 0;
565 using type = conditional_t<found, typename pack_element<index, Ts...>::type, Default>;
/gem5/util/streamline/
H A Dm5stats2streamline.py50 # in conversion. Sample .ini files can be found in
87 in conversion. Sample .ini files can be found in \
142 print "ERROR: config file '", config_file, "' not found"
746 # Whether this stat has been found for the current timestamp
747 self.found = False
749 # Whether this stat has been found at least once
820 print "ERROR: config file '", config_file, "' not found!"
912 print "Simulation frequency found! 1 tick == %e sec\n" \
932 print "WARNING: stat not found in window #", \
940 if not stat.found
[all...]
/gem5/src/cpu/minor/
H A Dlsq.cc729 auto found = std::find(slots.begin(), slots.end(), request); local
731 if (found != slots.end()) {
733 request, *found, *(request->inst));
734 slots.erase(found);
/gem5/src/mem/ruby/system/
H A DGPUCoalescer.cc1015 bool found = insertRequest(pkt, info.primaryType); local
1017 if (found) {
/gem5/src/arch/
H A Disa_parser.py1169 found = False
1177 found = True
1178 if not found:
1263 # like self.bases[base_name], but returns None if not found
1327 # See if we've already found this operand
2273 # Preprocessor directives found in a decode statement list are
/gem5/ext/pybind11/include/pybind11/
H A Dcast.h8 BSD-style license that can be found in the LICENSE file.
105 // We found a cache entry for it, so it's either pybind-registered or has pre-computed
113 bool found = false; local
115 if (known == tinfo) { found = true; break; }
117 if (!found) bases.push_back(tinfo);
212 // Main constructor for a found value/holder:
218 // Default constructor (used to signal a value-and-holder not found by get_value_and_holder())
728 // Not found, set error:
1350 throw value_error("Expected a character, but multi-character string found");

Completed in 65 milliseconds

12