Searched refs:value (Results 426 - 450 of 497) sorted by relevance

<<11121314151617181920

/gem5/ext/systemc/src/sysc/datatypes/bit/
H A Dsc_lv_base.h253 void set_bit( int i, sc_logic_value_t value );
328 sc_lv_base::set_bit( int i, sc_logic_value_t value )
335 m_data[wi] &= value << bi | ~mask;
336 m_ctrl[wi] &= value >> 1 << bi | ~mask;
719 "rotate values, rotate value = %d", n );
758 "rotate values, rotate value = %d", n );
854 // Proxy class for sc_proxy bit selection (r-value only).
857 // r-value concatenation operators and functions
1086 // Proxy class for sc_proxy part selection (r-value only).
1089 // r-value concatenatio
[all...]
H A Dsc_logic.h258 sc_logic_value_t value() const function in class:sc_dt::sc_logic
/gem5/src/systemc/ext/dt/bit/
H A Dsc_lv_base.hh233 void set_bit(int i, value_type value);
280 sc_lv_base::set_bit(int i, value_type value) argument
287 m_data[wi] &= value << bi | ~mask;
288 m_ctrl[wi] &= value >> 1 << bi | ~mask;
622 "positive rotate values, rotate value = ", n);
655 "positive rotate values, rotate value = ", n);
742 // Proxy class for sc_proxy bit selection (r-value only).
745 // r-value concatenation operators and functions
944 // Proxy class for sc_proxy part selection (r-value only).
947 // r-value concatenatio
[all...]
H A Dsc_logic.hh236 sc_logic_value_t value() const { return m_val; } function in class:sc_dt::sc_logic
/gem5/ext/testlib/
H A Dhelper.py133 argument and its data type is known to cache its hash value, then that
266 '''Signals one tried to set a value in a 'frozen' object.'''
342 def append_dictlist(dict_, key, value):
344 Append the `value` to a list associated with `key` in `dict_`.
345 If `key` doesn't exist, create a new list in the `dict_` with value in it.
348 list_.append(value)
H A Dhandlers.py213 result = record['result'].value
297 record['result'].value)
/gem5/src/arch/arm/kvm/
H A Dgic.cc128 unsigned value)
130 uint64_t reg = value;
127 setGicReg(unsigned group, unsigned vcpu, unsigned offset, unsigned value) argument
/gem5/ext/ply/ply/
H A Dyacc.py172 # .value = Symbol value
184 # .value attribute of the underlying YaccSymbol object.
198 if n >= 0: return self.slice[n].value
199 else: return self.stack[n].value
202 self.slice[n].value = v
205 return [s.value for s in self.slice[i:j]]
385 sym.value = None
389 debug.info("Action : Reduce rule [%s] with %s and goto state %d", p.str, "["+",".join([format_stack_entry(_v.value) for _v in symstack[-plen:]])+"]",-t)
482 result = getattr(n,"value",Non
[all...]
/gem5/util/tlm/src/
H A Dsc_slave_port.cc130 return delay.value();
248 /* Check returned value: */
/gem5/src/dev/arm/
H A Dhdlcd.hh59 * behavior as real hardware which repeats the last pixel value for the rest
150 /** Reset value for Bus_Options register */
153 /** Reset value for Version register */
259 void writeReg(Addr offset, uint32_t value);
/gem5/src/base/
H A Dbitunion.hh56 static_assert(std::is_empty<Base>::value,
/gem5/util/systemc/gem5_within_systemc/
H A Dmain.cc86 " -p <object> <param> <value> -- set a parameter\n"
311 Tick systemc_time = sc_core::sc_time_stamp().value();
/gem5/configs/example/
H A Dmemtest.py212 if (prev.clusivity.value == 'mostly_incl'):
/gem5/configs/learning_gem5/part3/
H A Dmsi_caches.py148 if 2**bits != system.cache_line_size.value:
H A Druby_caches_MI_example.py145 if 2**bits != system.cache_line_size.value:
/gem5/src/mem/cache/tags/
H A Dbase.cc118 if (!warmedUp && tagsInUse.value() >= warmupBound) {
/gem5/src/cpu/trace/
H A Dtrace_cpu.cc75 "max. value of %d.\n", params->sizeROB, UINT16_MAX);
77 "exceeds the max. value of %d.\n", params->sizeROB,
80 " %d exceeds the max. value of %d.\n",
99 if (progressMsgInterval != 0 && numOps.value() >= progressMsgThreshold) {
407 // a dependency equal to the initialisation value of zero, we know have
419 maxDependents = std::max<double>(num_depts, maxDependents.value());
821 maxReadyListSize.value());
859 maxReadyListSize.value());
921 // oldestInFlightRobNum is set to it's initialized (max) value.
925 // the inFlightNodes since that will have the numerically least value
[all...]
/gem5/ext/pybind11/tests/
H A Dtest_enum.py206 assert str(excinfo.value) == 'SimpleEnum: element "ONE" already exists!'
/gem5/ext/googletest/googlemock/scripts/generator/cpp/
H A Dast.py151 value = '%s %s' % (self.name, self.definition)
152 return self._StringHelper(self.__class__.__name__, value)
447 # some sort of variable declaration, parameter, or return value.
643 # Got a default value. Add any value (None) as a flag.
728 ref_pointer_name_seq, templated_types, value=None):
736 name, var_type, value, self.namespace_stack)
811 # be Name. Make sure to compare against the right value.
836 value = ''
839 value
[all...]
/gem5/ext/googletest/googlemock/test/
H A Dgmock-generated-matchers_test.cc231 virtual bool MatchAndExplain(tuple<char, int> value, argument
233 const int diff = get<0>(value) - get<1>(value);
235 *listener << "where the first value is " << diff
249 "where the first value is 55 more than the second",
537 // The following test passes a value of type const char[] to a
794 // value being matched.
869 explicit UncopyableFoo(char value) : value_(value) {} argument
H A Dgmock-matchers_test.cc285 *listener << "value % " << 2;
303 EXPECT_EQ("value % 2 == 0", Explain(m, 2));
304 EXPECT_EQ("value % 2 == 1", Explain(m, 3));
320 // Tests that value can be used in place of Eq(value).
471 // Using a polymorphic matcher to match a value type.
543 int value() const { return value_; } function in class:testing::gmock_matchers_test::IntValue
550 return foo.value() > 0;
614 ConvertibleFromAny(int a_value) : value(a_value) {}
616 explicit ConvertibleFromAny(const T& /*a_value*/) : value(
619 int value; member in struct:testing::gmock_matchers_test::ConvertibleFromAny
645 const int* value; member in struct:testing::gmock_matchers_test::IntReferenceWrapper
2810 AsBits(T value) argument
3362 int value() const { return value_; } function in class:testing::gmock_matchers_test::Uncopyable
4040 int value() const { return value_; } function in class:testing::gmock_matchers_test::NotCopyable
4534 PostIncrProxy(const value_type& value) argument
[all...]
/gem5/ext/mcpat/
H A Dmemoryctrl.cc509 XMLCSTR value = paramNode->getAttribute("value"); local
568 XMLCSTR value = statNode->getAttribute("value"); local
/gem5/util/minorview/
H A Dview.py476 for name, value in event.pairs.iteritems():
477 print name, '=', value
/gem5/src/arch/hsail/
H A Doperand.hh160 // if OperandType is smaller than 32-bit, we truncate the value
462 void setImm(const bool value) { is_imm = value; } argument
/gem5/ext/systemc/src/sysc/datatypes/int/
H A Dsc_signed_subref.inc42 // Proxy class for sc_signed part selection (r-value only).
150 // Proxy class for sc_signed part selection (r-value and l-value).
271 sc_digit val = 1; // Bit value.

Completed in 76 milliseconds

<<11121314151617181920