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

/gem5/ext/systemc/src/sysc/utils/
H A Dsc_hash.cpp54 void* contents; member in class:sc_core::sc_phash_elem
58 : key(k), contents(c), next(n) { }
59 sc_phash_elem() : key(0), contents(0), next(0) { }
196 sc_phash_base::add_direct( void* key, void* contents, unsigned hash_val ) argument
203 sc_phash_elem* new_entry = new sc_phash_elem(key, contents, bins[hash_val]);
248 insert( iter.key(), iter.contents() );
257 insert( (*kdup)(iter.key()), iter.contents() );
270 ptr->contents = c;
285 ptr->contents = c;
347 *pc = ptr->contents;
498 void* contents; local
581 sc_phash_base_iter::contents() const function in class:sc_core::sc_phash_base_iter
[all...]
H A Dsc_hash.h75 sc_phash_elem* add_direct(void* key, void* contents, unsigned hash_val);
153 void* contents() const;
247 C contents() const { return (C) sc_phash_base_iter::contents(); } function in class:sc_core::sc_phash_iter
340 C contents() const { return (C) sc_phash_base_iter::contents(); } function in class:sc_core::sc_pdhash_iter
430 C contents() { return (C) sc_phash_base_iter::contents(); } function in class:sc_core::sc_strhash_iter
/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_name_gen.cpp54 delete it.contents();
/gem5/configs/common/
H A DFileSystemConfig.py46 def file_append(path, contents):
48 f.write(str(contents))
/gem5/src/systemc/tests/
H A Dverify.py300 contents = os.listdir(path)
302 suffixed = filter(lambda c: c.endswith(suffix), contents)
304 common = filter(lambda t: not t.startswith(tuple(bases)), contents)
315 for entry in contents:
/gem5/ext/pybind11/tests/
H A Dtest_pytypes.cpp107 void *contents = capsule;
108 py::print("created capsule ({}, '{}')"_s.format((size_t) contents, capsule.name()));
/gem5/src/arch/
H A Disa_parser.py2637 def update(self, file, contents):
2639 the new contents are unchanged using its built-in hash feature.'''
2641 f.write(contents)
2650 contents of the specified file (with nested ##includes
2657 contents = '##newfile "%s"\n%s\n##endfile\n' % \
2659 return contents
2666 contents = open(filename).read()
2675 contents = self.includeRE.sub(replace, contents)
2678 return contents
[all...]
/gem5/src/arch/x86/linux/
H A Dprocess.cc155 Bitfield<2, 1> contents; variable
232 if (bits((uint8_t)flags.contents, 0))
234 if (bits((uint8_t)flags.contents, 1))
/gem5/ext/googletest/googletest/src/
H A Dgtest.cc5262 std::string contents(ReadEntireFile(flagfile));
5265 SplitString(contents, '\n', &lines);
/gem5/ext/googletest/googletest/test/
H A Dgtest_unittest.cc4758 // Compares two std::strings that have different contents, one of
4788 // Compares two std::wstrings that have different contents, one of
4819 // Compares two ::strings that have different contents, one of which
4859 // Compares two ::wstrings that have different contents, one of which
6425 internal::FilePath CreateFlagfile(const char* contents) { argument
6429 fprintf(f, "%s", contents);

Completed in 76 milliseconds