Searched refs:value (Results 301 - 325 of 497) sorted by relevance

<<11121314151617181920

/gem5/util/
H A Ddecode_packet_trace.py84 print 'Master id %d: %s' % (id_string.key, id_string.value)
/gem5/src/gpu-compute/
H A Dlds_state.hh87 write(const uint32_t index, const T value) argument
92 *p0 = value;
211 // The value is the number of wavefronts that reference this LDS, as
277 setRetryResp(const bool value) argument
279 retryResp = value;
H A Dhsail_code.hh170 int value; member in class:Label
172 Label() : value(-1)
176 bool defined() { return value != -1; }
193 value = _value;
201 return value;
/gem5/src/mem/ruby/profiler/
H A DAccessTraceForAddress.hh57 void addSample(int value);
/gem5/src/base/stats/
H A Dtext.hh100 std::string ValueToString(Result value, int precision);
/gem5/src/dev/x86/
H A Di82094aa.hh103 void writeReg(uint8_t offset, uint32_t value);
/gem5/ext/pybind11/tests/test_embed/
H A Dtest_interpreter.cpp81 static_assert(std::is_move_constructible<py::scoped_interpreter>::value, "");
82 static_assert(!std::is_move_assignable<py::scoped_interpreter>::value, "");
83 static_assert(!std::is_copy_constructible<py::scoped_interpreter>::value, "");
84 static_assert(!std::is_copy_assignable<py::scoped_interpreter>::value, "");
113 REQUIRE(py::module::import("external_module").attr("A")(123).attr("value").cast<int>() == 123);
251 // Reset the value at scope exit
/gem5/ext/pybind11/tests/
H A Dtest_opaque_types.py34 assert msg(excinfo.value) == """
46 assert m.print_opaque_list(ptr) == "Opaque list: [some value]"
H A Dtest_class.cpp181 ConvertibleFromUserType(UserType u) : i(u.value()) { }
258 int foo() const { return value; }
261 int value = 42; member in class:ProtectedA
282 virtual int foo() const { return value; }
285 int value = 42; member in class:ProtectedB
383 #define CHECK_BASE(N) static_assert(std::is_same<typename DoesntBreak##N::type, BreaksBase<N>>::value, \
386 #define CHECK_ALIAS(N) static_assert(DoesntBreak##N::has_alias && std::is_same<typename DoesntBreak##N::type_alias, BreaksTramp<N>>::value, \
388 #define CHECK_NOALIAS(N) static_assert(!DoesntBreak##N::has_alias && std::is_void<typename DoesntBreak##N::type_alias>::value, \
391 #define CHECK_HOLDER(N, TYPE) static_assert(std::is_same<typename DoesntBreak##N::holder_type, std::TYPE##_ptr<BreaksBase<N>>>::value, \
401 #define CHECK_BROKEN(N) static_assert(std::is_same<typename Breaks##N::type, BreaksBase<-N>>::value, \
[all...]
H A Dtest_sequences_and_iterators.cpp102 Sequence(const std::vector<float> &value) : m_size(value.size()) { argument
105 memcpy(m_data, &value[0], sizeof(float) * m_size);
207 .def("__setitem__", [](Sequence &s, py::slice slice, const Sequence &value) {
211 if (slicelength != value.size())
214 s[start] = value[i]; start += step;
/gem5/ext/googletest/googlemock/test/
H A Dgmock-more-actions_test.cc518 const int value = 5; local
520 a1.Perform(make_tuple(&value));
526 char value = 'a'; local
528 a1.Perform(make_tuple(true, &value));
534 linked_ptr<int> value(new int(5));
536 a1.Perform(make_tuple(value));
541 int value = 0; local
543 a1.Perform(tuple<int&>(value));
544 EXPECT_EQ(1, value);
548 int value local
555 int value = 0; local
[all...]
/gem5/ext/googletest/googletest/test/
H A Dgtest-printers_test.cc34 // This file tests the universal value printer.
65 // Some user-defined types for testing the universal value printer.
140 PrintableViaPrintTo() : value() {}
141 int value; member in struct:foo::PrintableViaPrintTo
145 *os << "PrintableViaPrintTo: " << x.value;
163 const T& value() const { return value_; } function in class:foo::PrintableViaPrintToTemplate
170 *os << "PrintableViaPrintToTemplate: " << x.value();
179 const T& value() const { return value_; } function in class:foo::StreamableTemplateInFoo
187 return os << "StreamableTemplateInFoo: " << x.value();
232 // Prints a value t
235 Print(const T& value) argument
245 PrintByRef(const T& value) argument
564 int value; member in struct:testing::gtest_printers_test::Foo
[all...]
H A Dgtest_unittest.cc189 void UnitTestRecordProperty(const char* key, const std::string& value) { argument
190 unit_test_.RecordProperty(key, value);
379 // Verifies that GetTestTypeId() returns the same value, no matter it
765 EXPECT_EQ(0, CountIf(v, IsPositive)); // Works when no value satisfies.
1070 EXPECT_STREQ("1", property.value());
1073 // Tests TestProperty replacing a value.
1076 EXPECT_STREQ("1", property.value());
1078 EXPECT_STREQ("2", property.value());
1318 const TestProperty property("key", "value");
1320 EXPECT_STREQ("value", propert
1625 SetEnv(const char* name, const char* value) argument
1719 Int32 value = 123; local
1732 Int32 value = 123; local
1746 Int32 value = 123; local
1758 Int32 value = 123; local
3824 int value() const { return value_; } function in class:__anon65::Uncopyable
3836 operator <<(::std::ostream& os, const Uncopyable& value) argument
5134 bool value; member in struct:ExplicitlyConvertibleToBool
[all...]
/gem5/src/systemc/ext/utils/
H A Dsc_vector.hh100 static const bool value = false;
105 static const bool value = true;
111 static const bool value = false;
116 static const bool value = true;
124 static const bool value = member in struct:sc_gem5::is_more_const
126 typename remove_const<T>::type>::value &&
127 is_const<CT>::value >= is_const<T>::value;
145 ::sc_gem5::special_result & (*) Type>::type::value
/gem5/ext/mcpat/
H A Diocontrollers.cc203 XMLCSTR value = paramNode->getAttribute("value"); local
224 XMLCSTR value = statNode->getAttribute("value"); local
364 XMLCSTR value = paramNode->getAttribute("value"); local
387 XMLCSTR value = statNode->getAttribute("value"); local
510 XMLCSTR value = paramNode->getAttribute("value"); local
528 XMLCSTR value = statNode->getAttribute("value"); local
[all...]
H A Dbus_interconnect.cc101 XMLCSTR value = paramNode->getAttribute("value"); local
144 XMLCSTR value = statNode->getAttribute("value"); local
/gem5/configs/common/
H A DOptions.py55 def _listCpuTypes(option, opt, value, parser):
59 def _listBPTypes(option, opt, value, parser):
63 def _listHWPTypes(option, opt, value, parser):
67 def _listIndirectBPTypes(option, opt, value, parser):
71 def _listMemTypes(option, opt, value, parser):
75 def _listPlatformTypes(option, opt, value, parser):
349 help="""Treat value of --checkpoint-restore or --take-checkpoint as a
/gem5/src/arch/generic/
H A Dvec_reg.hh88 * // template parametre, the second has a default value that works, and the
129 * // There is no need to copy the value back into the exec context, as
429 * being a 32-bit value. */
439 /** LaneSize is an abstraction of a LS byte value for the execution and thread
442 * The model serves that value, agnostic of the semantics of those bits. Then,
536 static_assert(!std::is_const<VecElem>::value || Const,
538 static_assert(std::is_integral<VecElem>::value,
642 to_number(const std::string& value, VecRegContainer<Sz>& v) argument
644 fatal_if(value.size() > 2 * VecRegContainer<Sz>::SIZE,
645 "Vector register value overflo
[all...]
/gem5/src/arch/mips/
H A Ddsp.cc43 MipsISA::bitrev(int32_t value) argument
52 result |= (value & 1 << i) << -shift;
54 result |= (value & 1 << i) >> shift;
61 MipsISA::dspSaturate(uint64_t value, int32_t fmt, int32_t sign, argument
64 int64_t svalue = (int64_t)value;
91 MipsISA::checkOverflow(uint64_t value, int32_t fmt, int32_t sign, argument
94 int64_t svalue = (int64_t)value;
114 MipsISA::signExtend(uint64_t value, int32_t fmt) argument
120 if (value & sign)
121 value |
129 addHalfLsb(uint64_t value, int32_t lsbpos) argument
1162 writeDSPControl(uint32_t *dspctl, uint32_t value, uint32_t mask) argument
[all...]
/gem5/ext/ply/example/BASIC/
H A Dbasinterp.py142 def assign(self,target,value):
145 self.vars[var] = self.eval(value)
155 self.lists[var][dim1val-1] = self.eval(value)
168 self.tables[var][dim1val-1][dim2val-1] = self.eval(value)
237 value = instr[2]
238 self.assign(target,value)
244 value = ('NUM',self.data[self.dc])
245 self.assign(target,value)
273 # Update the value of the loop variable according to the step
/gem5/ext/systemc/src/sysc/datatypes/fx/
H A Dsc_context.h156 const T& value() const;
306 sc_context<T>::value() const function in class:sc_dt::sc_context
/gem5/tests/test-progs/insttest/src/riscv/
H A Drv64c.h177 if (std::is_floating_point<M>::value)
196 if (std::is_floating_point<M>::value)
/gem5/src/sim/
H A Dmathexpr.cc125 n->value = v;
156 return n->value;
/gem5/src/systemc/ext/core/
H A Dsc_spawn.hh137 Reset(T *t, bool v, bool s) : target(t), value(v), sync(s) {}
140 bool value; member in struct:sc_core::sc_spawn_options::Reset
/gem5/src/dev/arm/
H A Dkmi.cc159 Pl050::setTxInt(bool value) argument
163 ints.tx = value ? 1 : 0;

Completed in 64 milliseconds

<<11121314151617181920