Searched full:foo* (Results 1 - 25 of 234) sorted by relevance

12345678910

/gem5/configs/boot/
H A Dnfs-client-dbench.rcS53 dd if=/dev/zero of=foo bs=1024k count=512
/gem5/ext/fputils/
H A DDoxyfile.in882 # header.html footer.html stylesheet.css YourConfigFile" and then modify
889 # The HTML_FOOTER tag can be used to specify a personal HTML footer for
891 # standard footer.
938 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
1265 # The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for
1266 # the generated latex document. The footer should contain everything after
1268 # standard footer. Notice: only use this tag if you know what you are doing!
/gem5/ext/mcpat/
H A DxmlParser.h458 * xNode.addText_WOSD("foo");
463 * xNode.addText("foo");
464 * xNode.addText_WOSD(stringDup("foo"));
559 * XMLNode x=XMLNode::parseString("<a>foo<!-- hello -->bar<!DOCTYPE world >chu</a>","a");
563 * x.getText(0) -> "foo"
571 * x.getText(0) -> "foobar"
/gem5/ext/ply/
H A DCHANGES190 lexer = lex.lex(optimize=True, lextab="ltab", outputdir="foo/bar")
200 parser = yacc.yacc(tabmodule="foo.bar.parsetab",outputdir="foo/bar")
202 yacc would create a file "foo.bar.parsetab.py" in the given directory.
212 import foo.bar.spam.parsetab as parsetab
379 '''foo: a b c d e'''
440 ('foo','exclusive'),
450 t_foo_NUM = '\d+' # Rule defined in foo state
453 t_foo_bar_NUM = '\d+' # Rule defined in both foo and bar
459 t_foo_ignore = " " # Ignored characters for foo stat
[all...]
/gem5/ext/ply/doc/
H A Dinternal.html662 package such as <tt>"foo.bar.parsetab"</tt>, then only the last component, <tt>"parsetab"</tt> is
H A Dply.html743 lexer = lex.lex(optimize=1,lextab="footab")
1190 ('foo','exclusive'),
1196 This declaration declares two states, <tt>'foo'</tt>
1211 t_foo_NUMBER = r'\d+' # Token 'NUMBER' in state 'foo'
1224 t_foo_bar_NUMBER = r'\d+' # Defines token 'NUMBER' in both state 'foo' and 'bar'
1252 t_foo_ignore = " \t\n" # Ignored characters for state 'foo'
1267 t.lexer.begin('foo') # Starts 'foo' state
1287 t.lexer.push_state('foo') # Starts 'foo' stat
[all...]
/gem5/ext/ply/ply/
H A Dlex.py518 # calling this with s = "t_foo_bar_SPAM" might return (('foo','bar'),'SPAM')
/gem5/ext/ply/test/
H A Dlex_error2.py20 t_error = "foo"
/gem5/ext/nomali/
H A DDoxyfile879 # header.html footer.html stylesheet.css YourConfigFile" and then modify
886 # The HTML_FOOTER tag can be used to specify a personal HTML footer for
888 # standard footer.
935 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
1263 # The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for
1264 # the generated latex document. The footer should contain everything after
1266 # standard footer. Notice: only use this tag if you know what you are doing!
/gem5/src/arch/hsail/
H A Doperand.cc343 // void foo(int a);
346 // foo(...) --> arg_u32 %param_p0;
348 // call &foo (%param_p0);
351 // call &foo (%param_p0);
/gem5/src/mem/probes/
H A Dmem_footprint.cc72 .desc("Memory footprint at cache line granularity")
75 .desc("Total memory footprint at cache line granularity since "
79 .desc("Memory footprint at page granularity")
82 .desc("Total memory footprint at page granularity since simulation "
H A Dmem_footprint.hh54 /// Probe to track footprint of accessed memory
55 /// Two granularity of footprint measurement i.e. cache line and page
63 // Fix footprint tracking state on stat reset
67 /// Cache Line size for footprint measurement (log2)
69 /// Page size for footprint measurement (log2)
77 /// Footprint at cache line size granularity
79 /// Footprint at cache line size granularity, since simulation begin
81 /// Footprint at page granularity
83 /// Footprint at page granularity, since simulation begin
/gem5/ext/
H A Dgit-commit-msg73 # - assume textLine+ to be a footer until proven otherwise
74 # - exception: the first block is not footer (as it is the title)
78 # aren't footer
79 # - in END, the last textLine+ block is available for footer parsing
83 # is a footer, the first block is not.
85 footerComment = 0
101 # Count blank lines outside footer comments
102 /^$/ && (footerComment == 0) {
107 # Catch footer comment
109 footerComment
[all...]
/gem5/ext/systemc/src/sysc/qt/
H A DINSTALL41 that prefix labels (e.g. "foo" appears as "_foo")
H A Dmeas.c930 typedef struct foo_t {
934 } foo_t; variable
937 static foo_t foo[] = {
987 for (i=0; foo[i].msg; ++i) {
988 if (foo[i].descr) {
993 for (j=0; foo[i].descr[j]; ++j) {
994 fputs (foo[i].descr[j], out);
1008 fputs (foo[0].msg, stderr);
1009 for (i=1; foo[
927 typedef struct foo_t { struct
931 } foo_t; typedef in typeref:struct:foo_t
[all...]
/gem5/ext/systemc/src/sysc/qt/md/
H A Dsolaris.README5 foo(){}
14 .globl foo
15 foo:
/gem5/ext/systemc/src/sysc/utils/
H A Dsc_vector.cpp147 // sc_vector< foo > v1, v2;
/gem5/site_scons/gem5_scons/
H A D__init__.py95 # back up one to change 'foo.cc -> o' to 'foo.cc -> .o'
/gem5/src/unittest/
H A Dstattest.cc166 .subname(0, "foo1")
167 .subname(1, "foo2")
168 .subname(2, "foo3")
169 .subname(3, "foo4")
170 .subname(4, "foo5")
/gem5/ext/pybind11/docs/
H A Dupgrade.rst54 py::class<Foo>(m, "Foo")
55 .def("__init__", [](Foo &self, ...) {
56 new (&self) Foo(...); // uses placement-new
60 py::class<Foo>(m, "Foo")
62 return new Foo(...); // return by raw pointer
63 // or: return std::make_unique<Foo>(...); // return by holder
64 // or: return Foo(...); // return by value (move constructor)
73 py::class<Foo>(
[all...]
/gem5/ext/pybind11/tests/
H A Dtest_multiple_inheritance.py9 assert mt.foo() == 3
18 def foo(self): member in class:test_multiple_inheritance_mix1.Base1
28 assert mt.foo() == 3
48 assert mt.foo() == 3
118 assert mi1.foo() == 1
123 assert mi2.foo() == 3
128 assert mi3.foo() == 5
133 assert mi4.foo() == 7
138 assert mi5.foo() == 10
/gem5/src/base/
H A Dcprintf_formats.hh213 std::stringstream foo; local
214 foo << data;
215 int flen = foo.str().size();
223 out << foo.str() << spaces;
225 out << spaces << foo.str();
/gem5/src/systemc/tests/systemc/1666-2011-compliance/named_events/
H A Dnamed_events.cpp148 sc_event ev("foo");
152 sc_assert( std::string(ev.name()) == "foo" );
153 sc_assert( std::string(ev.basename()) == "foo" );
154 sc_assert( sc_hierarchical_name_exists("foo") );
161 sc_assert( std::string(vec_e[0]->name()) == "foo" );
163 sc_assert( sc_find_event("foo") == &ev );
/gem5/src/systemc/tests/systemc/1666-2011-compliance/sc_vector/
H A Dsc_vector.cpp268 my_module_creator foo("The Creator");
269 const char* nm = "foo";
271 my_module* next = foo( (const char*)nm, (sc_vector<my_module>::size_type)idx );
274 strcat(buf, ".foo");
/gem5/src/systemc/tests/systemc/compliance_1666/test00/
H A Dtest00.cpp337 sc_assert(sc_report_handler::get_count("foo") == 0);
348 sc_assert(sc_find_object("foo") == 0);

Completed in 53 milliseconds

12345678910