Searched refs:kids (Results 1 - 7 of 7) sorted by relevance

/gem5/src/base/
H A Dtrie.hh60 Node *kids[2]; member in struct:Trie::Node
66 kids[0] = NULL;
67 kids[1] = NULL;
73 if (kids[1]) {
74 kids[1]->clear();
75 delete kids[1];
76 kids[1] = NULL;
78 if (kids[0]) {
79 kids[0]->clear();
80 delete kids[
[all...]
H A Ddebug.hh55 virtual std::vector<Flag *> kids() { return std::vector<Flag*>(); } function in class:Debug::Flag
119 std::vector<Flag *> kids() { return _kids; } function in class:Debug::CompoundFlag
/gem5/src/python/m5/
H A Ddebug.py44 children = [c for c in flag.kids() ]
53 children = [c for c in flag.kids() ]
/gem5/src/systemc/tests/systemc/1666-2011-compliance/sc_vector/
H A Dsc_vector.cpp151 sc_vector<Sub> kids; // Vector-of-modules, each with a port p member in struct:M
192 , kids("kids") // Construct the vector with name seed "kids"
204 kids.init(N);
207 sc_assert( kids.size() == static_cast<unsigned int>(N) );
210 sc_assemble_vector(kids, &Sub::p).bind( ports );
212 for (unsigned int i = 0; i < kids.size(); i++)
214 sc_assert( kids[i].p.get_interface() == ports[i].get_interface() );
/gem5/src/python/pybind11/
H A Ddebug.cc102 .def("kids", &Debug::Flag::kids)
/gem5/src/python/m5/util/
H A Djobfile.py310 def checkchildren(self, kids):
311 for kid in kids:
/gem5/util/stats/
H A Dprofile.py160 kids = [ child.symbol for child in self.children]
161 print '%s %d <%s>' % (self.symbol, self.count, ', '.join(kids))

Completed in 10 milliseconds