Searched refs:Value (Results 1 - 22 of 22) sorted by relevance

/gem5/src/sim/
H A Dstats.hh37 extern Stats::Value simTicks;
38 extern Stats::Value simFreq;
H A Dstat_control.cc65 Stats::Value simTicks;
66 Stats::Value finalTick;
67 Stats::Value simFreq;
114 Stats::Value hostMemory;
115 Stats::Value hostSeconds;
117 Stats::Value simInsts;
118 Stats::Value simOps;
H A Dvoltage_domain.hh149 Stats::Value currentVoltage;
H A Dclock_domain.hh81 Stats::Value currentClock;
/gem5/src/cpu/
H A Ddecode_cache.hh53 /// A sparse map from an Addr to a Value, stored in page chunks.
54 template<class Value>
60 Value items[TheISA::PageBytes];
121 Value &
/gem5/src/sim/power/
H A Dthermal_domain.hh108 Stats::Value currentTemp;
H A Dpower_model.hh103 Stats::Value dynamicPower, staticPower;
177 Stats::Value dynamicPower, staticPower;
/gem5/src/base/
H A Dtrie.hh42 template <class Key, class Value>
57 Value *value;
62 Node(Key _key, Key _mask, Value *_val) :
188 insert(Key key, unsigned width, Value *val)
269 * Method which looks up the Value corresponding to a particular key.
271 * @return The first Value matching this key, or NULL if none was found.
273 Value *
286 * @return The Value pointer from the removed entry.
288 Value *
292 Value *va
[all...]
H A Dstatistics.hh2538 class Value : public ValueBase<Value>
2541 Value(Group *parent = nullptr, const char *name = nullptr,
2543 : ValueBase<Value>(parent, name, desc)
3160 Temp(const Value &s)
/gem5/ext/pybind11/include/pybind11/
H A Dstl.h101 template <typename Type, typename Key, typename Value> struct map_caster {
103 using value_conv = make_caster<Value>;
116 value.emplace(cast_op<Key &&>(std::move(kconv)), cast_op<Value &&>(std::move(vconv)));
128 policy_value = return_value_policy_override<Value>::policy(policy_value);
143 template <typename Type, typename Value> struct list_caster {
144 using value_conv = make_caster<Value>;
156 value.push_back(cast_op<Value &&>(std::move(conv)));
171 policy = return_value_policy_override<Value>::policy(policy);
195 template <typename ArrayType, typename Value, bool Resizable, size_t Size = 0> struct array_caster {
196 using value_conv = make_caster<Value>;
[all...]
H A Dcast.h1538 template <typename T, bool Value = false> struct always_construct_holder { static constexpr bool value = Value; };
/gem5/util/stats/
H A Ddisplay.py29 class Value: class in inherits:
64 value = Value(self.value, self.precision)
68 pdf = Value(self.pdf, 2, True)
70 cdf = Value(self.cdf, 2, True)
H A Dprint.py32 class Value: class in inherits:
67 value = Value(self.value, self.precision)
71 pdf = Value(self.pdf, 2, True)
73 cdf = Value(self.cdf, 2, True)
H A Dinfo.py72 class Value(object): class in inherits:object
111 class Scalar(Value):
121 class VectorItemProxy(Value):
135 class Vector(Value):
171 if isinstance(value, Value):
198 class ValueProxy(Value):
310 class Proxy(Value):
406 class Formula(Value):
/gem5/ext/pybind11/tests/
H A Dtest_stl.cpp133 struct Value { int value; }; struct in struct:MoveOutContainer
134 std::list<Value> move_list() const { return {{0}, {1}, {2}}; }
136 py::class_<MoveOutContainer::Value>(m, "MoveOutContainerValue")
137 .def_readonly("value", &MoveOutContainer::Value::value);
/gem5/ext/googletest/googlemock/test/
H A Dgmock-generated-matchers_test.cc80 using testing::Value;
101 template <typename MatcherType, typename Value>
102 string Explain(const MatcherType& m, const Value& x) {
826 // Tests that Value() can be used to compose matchers.
828 return Value(arg, matcher_test::IsOdd()) && arg > 0;
1094 // Tests that matcher-typed parameters can be used in Value() inside a
1099 const int count = static_cast<int>(Value(arg, m1))
1100 + static_cast<int>(Value(arg, m2)) + static_cast<int>(Value(arg, m3));
H A Dgmock-matchers_test.cc136 using testing::Value;
217 template <typename MatcherType, typename Value>
218 string Explain(const MatcherType& m, const Value& x) {
2537 // Tests Value(value, matcher). Since Value() is a simple wrapper for
2539 // effort on testing Value().
2541 EXPECT_TRUE(Value("hi", StartsWith("h")));
2542 EXPECT_FALSE(Value(5, Gt(10)));
2547 EXPECT_TRUE(Value(0, is_zero));
2548 EXPECT_FALSE(Value('
[all...]
/gem5/src/unittest/
H A Dstattest.cc91 Value s17;
92 Value s18;
/gem5/ext/systemc/src/sysc/datatypes/int/
H A Dsc_nbutils.cpp82 # define CASE_ENUM2STR( Value ) \
83 case Value: return #Value
/gem5/src/systemc/dt/int/
H A Dsc_nbutils.cc108 #define CASE_ENUM2STR(Value) case Value: return #Value
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h425 // bool MatchAndExplain(const Value& value,
698 // Value cannot be passed by const reference, because some matchers take a
700 template <typename Value, typename T>
701 bool MatchPrintAndExplain(Value& value, const Matcher<T>& matcher,
714 const string& type_name = GetTypeName<Value>();
753 typedef typename tuple_element<N - 1, ValueTuple>::type Value; typedef
754 Value value = get<N - 1>(values);
762 // We remove the reference in type Value to prevent the
1860 ss << "Value of: " << value_text << "\n"
2631 // Transforms std::pair<const Key, Value> int
4347 inline bool Value(const T& value, M matcher) { function in namespace:testing
[all...]
/gem5/ext/mcpat/
H A DxmlParser.cc1876 // Eg. 'Attribute = "Value"' or 'Attribute = Value' or
1877 // 'Attribute = 'Value''.
2144 // "Attrib=Value "
2244 // "OpenTag Value"
2253 // "OpenTag Value CloseTag"

Completed in 98 milliseconds