Searched refs:prefix (Results 1 - 25 of 56) sorted by relevance

123

/gem5/util/systemc/systemc_within_gem5/systemc_simple_object/
H A Dprinter.cc44 printer->prefix = prefix;
H A Dprinter.hh43 // include wouldn't need the systemc/ext prefix.
52 std::string prefix; member in class:Printer
69 DPRINTFN("Word %d: %s%s\n", i++, prefix, input.read());
H A DSystemC_Example.py42 prefix = Param.String('', 'Prefix for each word') variable in class:SystemC_Printer
H A Dconfig.py41 parser.add_argument('--prefix', default='')
46 printer.prefix = args.prefix
/gem5/ext/pybind11/pybind11/
H A D__init__.py11 sys.prefix != getattr(sys, "base_prefix", sys.prefix)
14 conda = os.path.exists(os.path.join(sys.prefix, 'conda-meta'))
17 return os.path.join(sys.prefix, 'include', 'site',
21 return os.path.join(sys.prefix, 'Library', 'include')
23 return os.path.join(sys.prefix, 'include')
33 dist_cobj.prefix = ""
/gem5/src/base/
H A Dprintable.hh52 const std::string &prefix = "") const = 0;
H A Dstr.hh218 * Return true if 's' starts with the prefix string 'prefix'.
221 startswith(const char *s, const char *prefix) argument
223 return (strncmp(s, prefix, strlen(prefix)) == 0);
228 * Return true if 's' starts with the prefix string 'prefix'.
231 startswith(const std::string &s, const char *prefix) argument
233 return (s.compare(0, strlen(prefix), prefix)
241 startswith(const std::string &s, const std::string &prefix) argument
[all...]
H A Dlogging.hh88 Logger(const char *prefix) : enabled(true), prefix(prefix) argument
90 assert(prefix);
99 ss << prefix << str;
132 const char *prefix; member in class:Logger
/gem5/src/mem/cache/
H A Dcache_blk.cc78 const std::string &prefix) const
80 ccprintf(os, "%sblk %c%c%c%c\n", prefix,
H A Dwrite_queue_entry.cc82 const std::string &prefix) const
85 ccprintf(os, "%sFromCPU: ", prefix);
170 const std::string &prefix) const
173 prefix, blkAddr, blkAddr + blkSize - 1,
178 ccprintf(os, "%s Targets:\n", prefix);
179 targets.print(os, verbosity, prefix + " ");
H A Dwrite_queue_entry.hh87 const std::string &prefix) const;
174 const std::string &prefix = "") const override;
H A Dmshr.cc227 const std::string &prefix) const
245 ccprintf(os, "%s%s: ", prefix, s);
580 // for the prefix of the deferredTargets [begin(), last_it) clear
659 MSHR::print(std::ostream &os, int verbosity, const std::string &prefix) const
662 prefix, blkAddr, blkAddr + blkSize - 1,
675 ccprintf(os, "%s Targets:\n", prefix);
676 targets.print(os, verbosity, prefix + " ");
679 ccprintf(os, "%s Deferred Targets:\n", prefix);
680 deferredTargets.print(os, verbosity, prefix + " ");
/gem5/system/arm/dt/
H A DMakefile34 # $(1) is the prefix of DTB files
44 $(foreach prefix, $(TARGET_PREFIX), $(call CREATE_TARGET, $(prefix))) \
/gem5/src/mem/slicc/ast/
H A DMethodCallExprAST.py43 obj_type, methodId, prefix = self.generate_prefix(paramTypes)
51 code("$prefix${{self.proc_name}}(${{', '.join(params)}}))")
85 prefix = ""
151 prefix = "%s((*(%s))." % (prefix, code)
153 prefix = "%s((%s)." % (prefix, code)
155 return obj_type, methodId, prefix
171 prefix = "(%s::" % self.type_ast
175 return obj_type, methodId, prefix
[all...]
/gem5/site_scons/site_tools/
H A Ddefault.py66 any([key.startswith(prefix) for prefix in use_prefixes]):
/gem5/ext/googletest/googlemock/scripts/
H A Dgmock-config.in48 --prefix=<dir> overrides the installation prefix
49 --exec-prefix=<dir> overrides the executable installation prefix
50 --libdir=<dir> overrides the library installation prefix
51 --includedir=<dir> overrides the header file installation prefix
54 --prefix installation prefix
55 --exec-prefix executable installation prefix
[all...]
/gem5/ext/googletest/googletest/scripts/
H A Dgtest-config.in48 --prefix=<dir> overrides the installation prefix
49 --exec-prefix=<dir> overrides the executable installation prefix
50 --libdir=<dir> overrides the library installation prefix
51 --includedir=<dir> overrides the header file installation prefix
54 --prefix installation prefix
55 --exec-prefix executable installation prefix
[all...]
/gem5/src/arch/arm/tracers/
H A Dtarmac_record_v8.hh85 const std::string &prefix = "") const override;
102 const std::string &prefix = "") const override;
125 const std::string &prefix = "") const override;
H A Dtarmac_record_v8.cc185 const std::string &prefix) const
215 const std::string &prefix) const
234 const std::string &prefix) const
H A Dtarmac_record.hh101 const std::string &prefix = "") const override;
136 const std::string &prefix = "") const override;
172 const std::string &prefix = "") const override;
/gem5/src/systemc/core/
H A Dsc_main.cc222 const char *prefix = "("; local
226 os << prefix; local
227 prefix = "|";
/gem5/src/sim/
H A Dmathexpr.cc169 MathExpr::toStr(Node *n, std::string prefix) const {
171 ret += prefix + "|-- " + n->toStr() + "\n";
173 ret += toStr(n->r, prefix + "| ");
175 ret += toStr(n->l, prefix + "| ");
H A Dmathexpr.hh120 std::string toStr(Node *n, std::string prefix) const;
/gem5/ext/systemc/src/sysc/utils/
H A Dsc_vector.cpp143 sc_vector_base::make_name( const char* prefix, size_type /* idx */ ) argument
150 return sc_gen_unique_name( prefix );
/gem5/ext/googletest/googletest/test/
H A Dgtest_test_utils.py104 prefix = '--' + flag + '='
105 if argv[i].startswith(prefix):
106 _flag_map[flag] = argv[i][len(prefix):]

Completed in 26 milliseconds

123