Searched refs:value (Results 326 - 350 of 497) sorted by relevance

<<11121314151617181920

/gem5/src/python/m5/util/
H A Dgrammar.py131 (self.current_source, t.lineno, t.lexpos + 1, t.value)
138 (repr(t.value[0]), t.lineno, t.lexpos)
/gem5/src/base/loader/
H A Dcoff_sym.h76 * All "ifooMax" values are the highest legal value PLUS ONE. This makes
242 coff_long value; /* value of symbol */ member in struct:ecoff_sym
379 unsigned value: 24; /* address where we are moving it to */ member in struct:__anon22
443 * Note: the value "isymMac" is used by symbols that have the concept
444 * of enclosing a block of related information. This value is the
485 stRegReloc sc??? value old register number
488 stConstant scInfo value --- (scalar)
/gem5/src/arch/arm/
H A Dpmu.cc539 value = 0;
552 debugCounter("attempted to get value from a counter without"
555 return value;
561 value = val;
567 debugCounter("attempted to set value from a counter without"
606 warn_once("Can't change counter value: Counter %i does not exist.\n",
722 // Old checkpoints used to store the entire PMCEID value in a
756 SERIALIZE_SCALAR(value);
764 UNSERIALIZE_SCALAR(value);
773 value_until_overflow = UINT64_MAX - value;
[all...]
/gem5/ext/pybind11/include/pybind11/
H A Dnumpy.h116 // Lookup a type according to its size, and return a value corresponding to the NumPy typenum.
120 static_assert(code_index::value != sizeof...(Check), "Unable to match type on this platform");
121 return std::get<code_index::value>(std::make_tuple(codes...));
450 // If info.itemsize == 0, use the value calculated from the format string
594 template <typename T, typename = detail::enable_if_t<std::is_integral<T>::value && !std::is_same<bool, T>::value>>
949 struct format_descriptor<T, detail::enable_if_t<detail::is_pod_struct<T>::value>> {
963 struct format_descriptor<T, detail::enable_if_t<std::is_enum<T>::value>> {
987 value = type::ensure(src);
988 return static_cast<bool>(value);
[all...]
H A Doperators.h56 using L_type = conditional_t<std::is_same<L, self_t>::value, Base, L>;
57 using R_type = conditional_t<std::is_same<R, self_t>::value, Base, R>;
68 using L_type = conditional_t<std::is_same<L, self_t>::value, Base, L>;
69 using R_type = conditional_t<std::is_same<R, self_t>::value, Base, R>;
H A Dchrono.h49 value = type(duration_cast<duration<rep, period>>(
57 value = type(duration_cast<duration<rep, period>>(duration<double>(PyFloat_AsDouble(src.ptr()))));
143 value = system_clock::from_time_t(std::mktime(&cal)) + msecs;
/gem5/src/cpu/kvm/
H A Dx86_cpu.hh106 void setMSR(uint32_t index, uint64_t value);
/gem5/src/systemc/tlm_bridge/
H A Dgem5_to_tlm.cc236 return delay.value();
269 return delay.value();
349 // Check returned value:
360 Tick nextEventTick = curTick() + delay.value();
437 Tick nextEventTick = curTick() + delay.value();
/gem5/src/mem/cache/compressors/
H A Dbdi.cc95 // Set base value
219 // Get current value
244 // add this value as the new base and insert its respective delta of 0.
264 uint64_t value = 0; local
287 // Concatenate decompressed value
288 value <<= base_size_bits;
289 value |= static_cast<uint64_t>((base + delta) & mask);
292 return value;
/gem5/ext/pybind11/tests/
H A Dtest_builtin_casters.cpp127 m.def("refwrap_usertype", [](std::reference_wrapper<UserType> p) { return p.get().value(); });
128 // Not currently supported (std::pair caster has return-by-value cast operator);
142 m.def("refwrap_iiw", [](const IncType &w) { return w.value(); });
147 IncType x(w.value());
149 IncType y(w.value());
/gem5/util/minorview/
H A Dmodel.py210 just a single value)"""
316 for index, value in parsed:
319 special_view_decoder(elemClass)(value)
460 for name, value in self.pairs.iteritems():
461 ret.append("%s=%s" % (name, str(value)))
473 for name, value in self.pairs:
474 ret.append("%s=%s", name, str(value))
487 for name, value in self.pairs:
488 ret.append("%s=%s", name, str(value))
500 for name, value i
[all...]
/gem5/tests/test-progs/insttest/src/riscv/
H A Drv64i.h167 if (std::is_signed<M>::value) {
174 if (std::is_signed<M>::value) {
181 if (std::is_signed<M>::value) {
/gem5/ext/systemc/src/sysc/datatypes/bit/
H A Dsc_bv_base.h237 void set_bit( int i, sc_logic_value_t value );
307 sc_bv_base::set_bit( int i, sc_logic_value_t value )
313 m_data[wi] &= value << bi | ~mask;
/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_reset.cpp45 // (3) When a change in the value of a reset signal occurs it invokes the
132 // Notify processes that there is a change in the reset signal value.
140 bool value; // value of our signal. local
142 value = m_iface_p->read();
147 active = ( entry_p->m_level == value );
206 // should be notified when there is a change in the value of the reset signal.
331 // the value of the reset signal changes.
/gem5/src/mem/qos/
H A Dmem_ctrl.cc194 if (priorityMaxLatency[qos].value() < latency) {
198 if (priorityMinLatency[qos].value() > latency
199 || priorityMinLatency[qos].value() == 0) {
292 .desc("Average QoS priority value for accepted requests")
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h94 ::std::string PrintToString(const T& value);
291 // comparing two numbers. The larger the value, the more error we
292 // allow. A 0 value means that two numbers must be exactly the same
307 // around may change its bits, although the new value is guaranteed
520 // value_param text representation of the test's value parameter,
617 // return value is insignificant - we just need to return something
644 NULL, // No value parameter.
670 // Test. The return value is insignificant - we just need to return
742 ConstCharPtr(const char* str) : value(str) {}
744 const char* value; member in struct:testing::internal::ConstCharPtr
885 static const bool value = __is_convertible(From, To); member in class:testing::internal::ImplicitlyConvertible
891 static const bool value = member in class:testing::internal::ImplicitlyConvertible
897 const bool ImplicitlyConvertible<From, To>::value; member in class:testing::internal::ImplicitlyConvertible
[all...]
/gem5/src/systemc/tests/include/specialized_signals/
H A Dscx_signal_signed.h77 and ports whose target value is a SystemC native type.
173 and ports whose target value is a SystemC native type.
250 // get the value changed event
254 // read the current value
257 // get a reference to the current value (for tracing)
261 // was there a value changed event?
326 // This class implements a signal whose value acts like an sc_dt::sc_bigint<W> data
327 // value. This class is a specialization of the generic sc_signal class to
352 inline void base_write( sc_dt::int64 value );
353 inline void base_write( sc_dt::uint64 value );
[all...]
H A Dscx_signal_unsigned.h77 and ports whose target value is a SystemC native type.
160 and ports whose target value is a SystemC native type.
240 // get the value changed event
244 // read the current value
247 // get a reference to the current value (for tracing)
251 // was there a value changed event?
316 // This class implements a signal whose value acts like an sc_dt::sc_biguint<W> data
317 // value. This class is a specialization of the generic sc_signal class to
342 inline void base_write( sc_dt::int64 value );
343 inline void base_write( sc_dt::uint64 value );
[all...]
/gem5/src/systemc/ext/dt/bit/
H A Dsc_bit_proxies.hh59 // Proxy class for sc_proxy bit selection (r-value only, boolean conversion).
88 // Proxy class for sc_proxy bit selection (r-value only).
121 return bit_type(sc_logic::not_table[value()]);
128 value_type value() const { return m_obj.get_bit(m_index); } function in class:sc_dt::sc_bitref_r
129 bool is_01() const { return sc_logic(value()).is_01(); }
130 bool to_bool() const { return sc_logic(value()).to_bool(); }
131 char to_char() const { return sc_logic(value()).to_char(); }
180 // r-value concatenation operators and functions
378 // Proxy class for sc_proxy bit selection (r-value and l-value)
2067 set_bit(int n, value_type value) argument
2227 set_bit(int n, value_type value) argument
[all...]
/gem5/src/dev/arm/
H A Dgic_v3_its.cc250 // Update the value in GITS_TRANSLATER only once we know
822 uint64_t value = 0; local
828 value = gitsControl;
832 value = gitsIidr;
836 value = gitsTyper;
840 value = gitsTyper.high;
844 value = gitsCbaser;
848 value = gitsCbaser.high;
852 value = gitsCwriter;
856 value
[all...]
/gem5/util/stats/
H A Ddb.py157 from info import ProxyError, scalar, vector, value, values, total, len
165 return value(stat, run.run)
393 def __setattr__(self, attr, value):
394 super(Database, self).__setattr__(attr, value)
398 if value == 'sum':
400 elif value == 'avg':
402 elif value == 'stdev':
/gem5/ext/pybind11/include/pybind11/detail/
H A Dclass.h40 extern "C" inline int pybind11_static_set(PyObject *self, PyObject *obj, PyObject *value) { argument
42 return PyProperty_Type.tp_descr_set(self, cls, value);
47 Return value: New reference. */
85 Return value: New reference. */
93 def __set__(self, obj, value):
95 property.__set__(self, cls, value)
108 we need to call `static_property.__set__()` in order to propagate the new value to
110 extern "C" inline int pybind11_meta_setattro(PyObject* obj, PyObject* name, PyObject* value) { argument
116 // 1. `Type.static_prop = value` --> descr_set: `Type.static_prop.__set__(value)`
[all...]
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h74 // used by a matcher to explain why a value matches or doesn't match.
122 // a verb phrase that describes the property a value matching this
123 // matcher should have. The subject of the verb phrase is the value
166 // size is 0 when the value is already known to be empty.
314 // object that can check whether a value of type T matches. The
323 // cannot use it until a valid value has been assigned to it.
332 Matcher(T value); // NOLINT
425 // bool MatchAndExplain(const Value& value,
512 // Matcher but is not one yet; for example, Eq(value)) or a value (fo
538 CastImpl(const M& value, BooleanConstant<false>) argument
701 MatchPrintAndExplain(Value& value, const Matcher<T>& matcher, MatchResultListener* listener) argument
754 Value value = get<N - 1>(values); local
1921 MatchAndExplain(T value, MatchResultListener* listener) const argument
2198 MatchAndExplain(const T& value, MatchResultListener* listener) const argument
3747 Matcher(T value) argument
4347 Value(const T& value, M matcher) argument
4354 ExplainMatchResult( M matcher, const T& value, MatchResultListener* listener) argument
[all...]
/gem5/src/dev/net/
H A Dsinic.cc244 uint64_t value M5_VAR_USED = 0;
248 value = reg;
254 value = reg;
259 info.name, cpu, index, daddr, pkt->getAddr(), pkt->getSize(), value);
1413 int value; local
1414 paramIn(cp, csprintf("rxList%d", i), value);
1415 rxList.push_back(value);
1422 int value; local
1423 paramIn(cp, csprintf("rxBusy%d", i), value);
1424 rxBusy.push_back(value);
1431 int value; local
[all...]
/gem5/configs/example/
H A Dread_config.py107 value = 1.0 / float(param)
109 value = ticks.fromSeconds(value)
110 return cls('%fB/s' % value)
202 param_value = [ param.ptype.parse_ini(self.flags, value)
203 for value in param_values ]

Completed in 71 milliseconds

<<11121314151617181920