Searched refs:Set (Results 1 - 25 of 33) sorted by relevance

12

/gem5/src/mem/ruby/common/
H A DSet.hh42 class Set class
51 Set() : m_nSize(0) {} function in class:Set
53 Set(int size) : m_nSize(size) function in class:Set
61 Set(const Set& obj) : m_nSize(obj.m_nSize), bits(obj.bits) {} function in class:Set
62 ~Set() {}
64 Set& operator=(const Set& obj)
82 addSet(const Set& obj)
101 removeSet(const Set
[all...]
H A DNetDest.hh35 #include "mem/ruby/common/Set.hh"
47 NetDest& operator=(const Set& obj);
54 void setNetDest(MachineType machine, const Set& set);
108 std::vector<Set> m_bits; // a vector of bit vectors - i.e. Sets
H A DNetDest.cc55 NetDest::setNetDest(MachineType machine, const Set& set)
/gem5/ext/googletest/googletest/samples/
H A Dsample2.h59 Set(a_c_string);
64 Set(string.c_string_);
81 void Set(const char* c_string);
H A Dsample2_unittest.cc94 // Tests the Set method.
95 TEST(MyString, Set) {
98 s.Set(kHelloString);
101 // Set should work when the input pointer is the same as the one
103 s.Set(s.c_string());
107 s.Set(NULL);
H A Dsample2.cc51 void MyString::Set(const char* a_c_string) { function in class:MyString
/gem5/src/mem/ruby/profiler/
H A DAddressProfiler.hh42 class Set;
61 const Set& owner, const Set& sharers, NodeID requestor);
63 const Set& owner, const Set& sharers, NodeID requestor);
H A DAddressProfiler.cc249 const Set& owner, const Set& sharers,
252 Set indirection_set;
267 const Set& owner, const Set& sharers,
270 Set indirection_set;
H A DAccessTraceForAddress.hh35 #include "mem/ruby/common/Set.hh"
76 Set m_touched_by;
/gem5/src/dev/arm/
H A Dsmmu_v3_caches.hh142 typedef std::vector<Entry> Set; typedef in class:SMMUTLB
143 std::vector<Set> sets;
149 size_t pickEntryIdxToReplace(const Set &set, AllocPolicy alloc);
187 typedef std::vector<Entry> Set; typedef in class:ARMArchTLB
188 std::vector<Set> sets;
193 size_t pickEntryIdxToReplace(const Set &set);
227 typedef std::vector<Entry> Set; typedef in class:IPACache
228 std::vector<Set> sets;
233 size_t pickEntryIdxToReplace(const Set &set);
274 typedef std::vector<Entry> Set; typedef in class:ConfigCache
340 typedef std::vector<Entry> Set; typedef in class:WalkCache
[all...]
H A Dsmmu_v3_caches.cc174 Set set(associativity, e);
184 Set &set = sets[pickSetIdx(va)];
218 Set &set = sets[s];
253 Set &set = sets[pickSetIdx(incoming.va)];
263 Set &set = sets[pickSetIdx(sid, ssid)];
277 Set &set = sets[s];
291 Set &set = sets[pickSetIdx(va)];
307 Set &set = sets[pickSetIdx(va)];
321 Set &set = sets[s];
336 Set
[all...]
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-filepath.h51 // Except for Set methods, all methods are const or static, which provides an
69 Set(rhs);
73 void Set(const FilePath& rhs) { function in class:testing::internal::FilePath
/gem5/ext/googletest/googlemock/scripts/generator/cpp/
H A Dkeywords.py33 from sets import Set as set
H A Dgmock_class.py44 set = sets.Set
H A Dtokenize.py38 from sets import Set as set
/gem5/configs/example/
H A Dgarnet_synth_traffic.py71 Set to -1 to disable.")
75 Set to -1 to disable.")
79 Set to -1 to disable.")
84 Set to -1 to inject randomly in all vnets.")
/gem5/tests/test-progs/asmtest/src/riscv/isa/rv64mi/
H A Dbreakpoint.S16 # Set up breakpoint to trap on M-mode fetches.
48 # Set up breakpoint to trap on M-mode reads.
68 # Set up breakpoint to trap on M-mode stores.
/gem5/ext/pybind11/include/pybind11/detail/
H A Dinit.h109 v_h.type->init_instance(v_h.inst, nullptr); // Set up the holder
284 /// Set just the C++ state. Same as `__init__`.
290 /// Set both the C++ and Python states
299 template <typename Get, typename Set,
300 typename = function_signature_t<Get>, typename = function_signature_t<Set>>
303 template <typename Get, typename Set,
305 struct pickle_factory<Get, Set, RetState(Self), NewInstance(ArgState)> {
311 remove_reference_t<Set> set;
313 pickle_factory(Get get, Set set)
314 : get(std::forward<Get>(get)), set(std::forward<Set>(se
[all...]
/gem5/tests/test-progs/asmtest/src/riscv/isa/rv64si/
H A Ddirty.S24 # Set up MPRV with MPP=S, so loads and stores use S-mode
33 # Set SUM=1 so user memory access is permitted
103 # Set the D bit.
/gem5/ext/googletest/googlemock/scripts/
H A Dfuse_gmock_files.py123 processed_files = sets.Set() # Holds all gmock headers we've processed.
162 processed_files = sets.Set()
/gem5/ext/googletest/googletest/test/
H A Dgtest-filepath_test.cc494 testdata_path_.Set(FilePath(
497 testdata_file_.Set(testdata_path_.RemoveTrailingPathSeparator());
499 unique_file0_.Set(FilePath::MakeFileName(testdata_path_, FilePath("unique"),
501 unique_file1_.Set(FilePath::MakeFileName(testdata_path_, FilePath("unique"),
595 TEST(FilePathTest, Set) {
598 mac.Set(apple); // Implement Set() since overloading operator= is forbidden.
/gem5/ext/googletest/googletest/scripts/
H A Dfuse_gtest_files.py64 from sets import Set as set # For Python 2.3 compatibility
/gem5/ext/googletest/googletest/src/
H A Dgtest-filepath.cc292 full_pathname.Set(MakeFileName(directory, base_name, number++, extension));
/gem5/ext/googletest/googlemock/test/
H A Dgmock-actions_test.cc261 DefaultValue<int>::Set(1);
262 DefaultValue<const MyNonDefaultConstructible>::Set(
334 DefaultValue<const int&>::Set(n);
336 DefaultValue<MyNonDefaultConstructible&>::Set(x);
754 // DefaultValue<T>::Set() when it's not overriden by an ON_CALL().
756 DefaultValue<int>::Set(1);
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-spec-builders.h535 typedef ::std::set<Expectation, Less> Set;
566 typedef Expectation::Set::const_iterator const_iterator;
569 typedef Expectation::Set::value_type value_type;
612 Expectation::Set expectations_;

Completed in 41 milliseconds

12