Searched refs:value (Results 376 - 400 of 497) sorted by relevance

<<11121314151617181920

/gem5/ext/googletest/googletest/src/
H A Dgtest-port.cc317 << "Unexpected value of critical_section_init_phase_ "
396 // Registers thread_local_instance as having value on the current thread.
397 // Returns a value that can be used to identify the thread from other threads.
481 // In a particular thread, maps a ThreadLocal object to its value.
538 // Protects access to GetThreadLocalsMapLocked() and its return value.
540 // Protects access to GetThreadMapLocked() and its return value.
1147 // the result to *value and returns true; otherwise leaves *value
1149 bool ParseInt32(const Message& src_text, const char* str, Int32* value) {
1160 << " has value \"" << st
[all...]
H A Dgtest-internal-inl.h84 // The value of GetTestTypeId() as seen from within the Google Test
127 // Parses a string for an Int32 flag, in the form of "--flag=value".
129 // On success, stores the value of the flag in *value, and returns
130 // true. On failure, returns false without changing *value.
132 const char* str, const char* flag, Int32* value);
135 // given --gtest_random_seed flag value.
669 // value-parameterized tests and instantiate and register them.
691 // value-parameterized tests are disabled, RegisterParameterizedTests is
713 // result already contains a property with the same key, the value wil
810 set_catch_exceptions(bool value) argument
1171 FormatBool(bool value) argument
[all...]
/gem5/src/arch/arm/
H A Dpmu.hh129 * @return Register value.
182 * This value is typically used to index into various registers
183 * controlling interrupts and overflows. The value normally in the
207 * @param val New PMCR value
227 * Get the value of a performance counter.
229 * This method returns the value of a general purpose performance
241 * Set the value of a performance counter.
243 * This method sets the value of a general purpose performance
253 * returns the type value and filter settings of a general purpose
267 * the type value an
488 uint64_t value; member in struct:ArmISA::PMU::CounterState
[all...]
/gem5/src/arch/generic/
H A Dvec_pred_reg.hh93 /// Reset the register to an all-false value.
98 /// Reset the register to an all-true value.
133 /// Write a raw value in an element of the predicate register
277 /// Sets the predicate register to an all-true value.
382 to_number(const std::string& value, VecPredRegContainer<NumBits, Packed>& p) argument
385 for (const auto& c: value) {
/gem5/src/base/
H A Dcircular_queue.test.cc66 * Once an element has been added we test the new value
69 * value to be fixed and the back value to change, matching
70 * the latest pushed value.*/
134 const auto value = 0xAAAAAAAA; local
136 cq.push_back(value);
H A Dbitunion.test.cc268 is64 = std::is_same<BitUnionBaseType<Dummy64>, uint64_t>::value;
270 is64 = std::is_same<BitUnionBaseType<Dummy32>, uint64_t>::value;
/gem5/src/python/m5/
H A Dproxy.py72 def __setattr__(self, attr, value):
76 super(BaseProxy, self).__setattr__(attr, value)
/gem5/src/python/m5/util/
H A Dsorteddict.py170 def fromkeys(cls, seq, value=None):
173 d[key] = value
/gem5/util/batch/
H A Djob.py114 value = f.readline().strip()
116 return value
/gem5/util/pbs/
H A Djob.py116 value = f.readline().strip()
118 return value
/gem5/configs/common/
H A DCacheConfig.py217 def __setattr__(cls, attr, value):
220 return super(ExternalSlave, cls).__setattr__(attr, value)
/gem5/src/systemc/core/
H A Dscheduler.hh235 return getCurTick() + delay.value();
247 if (delay.value() == 0) {
H A Dprocess.hh233 bool value() { return _value; } function in class:sc_gem5::Reset
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-tuple.h742 static const int value = 0; member in struct:std::tr1::tuple_size
747 static const int value = 1; member in struct:std::tr1::tuple_size
752 static const int value = 2; member in struct:std::tr1::tuple_size
757 static const int value = 3; member in struct:std::tr1::tuple_size
762 static const int value = 4; member in struct:std::tr1::tuple_size
767 static const int value = 5; member in struct:std::tr1::tuple_size
772 static const int value = 6; member in struct:std::tr1::tuple_size
777 static const int value = 7; member in struct:std::tr1::tuple_size
782 static const int value = 8; member in struct:std::tr1::tuple_size
787 static const int value member in struct:std::tr1::tuple_size
792 static const int value = 10; member in struct:std::tr1::tuple_size
[all...]
/gem5/ext/systemc/src/sysc/datatypes/fx/
H A Dsc_fxval.cpp62 // Fixed-point value type; arbitrary precision.
185 // Fixed-point value types; limited precision.
445 int value = 0; local
448 value += static_cast<int>( a.get_bit( i ) ) << j;
451 if( value < 10 )
452 s += static_cast<char>( value + '0' );
454 s += static_cast<char>( value + 'a' - 10 );
/gem5/src/systemc/dt/fx/
H A Dsc_fxval.cc62 // Fixed-point value type; arbitrary precision.
179 // Fixed-point value types; limited precision.
411 int value = 0; local
413 value += static_cast<int>(a.get_bit(i)) << j;
416 if (value < 10)
417 s += static_cast<char>(value + '0');
419 s += static_cast<char>(value + 'a' - 10);
/gem5/ext/googletest/googlemock/test/
H A Dgmock-generated-function-mockers_test.cc390 virtual void Push(const T& value) = 0;
460 STDMETHOD_(void, Push)(const T& value) = 0;
612 int value = 1; local
613 EXPECT_CALL(foo, Call()).WillOnce(ReturnRef(value));
616 value = 2;
H A Dgmock-generated-actions_test.cc276 // The above line calls ByRef() on a const value.
1023 explicit UnaryConstructorClass(int value) : value_(value) {} argument
1071 // Tests that ACTION_TEMPLATE works when there is no value parameter.
1084 // Tests that ACTION_TEMPLATE works when there are value parameters.
1108 explicit BoolResetter(bool* value) : value_(value) {} argument
1143 explicit GiantTemplate(int a_value) : value(a_value) {}
1144 int value; member in struct:testing::gmock_generated_actions_test::GiantTemplate
1159 AND_1_VALUE_PARAMS(value)) {
[all...]
/gem5/util/stats/
H A Dprofile.py52 for value in self.itervalues():
53 total += value
169 value = self.total() * 100.0 / total
170 if value < threshold:
176 label = '%s %.2f%%' % (self.symbol, value)
304 raise ValueError, 'value is %f' % val
/gem5/src/cpu/kvm/
H A Dbase.cc192 // Return value is irrelevant for timing-mode accesses.
894 panic("KVM: Failed to set register (0x%x) value (errno: %i)\n",
911 panic("KVM: Failed to get register (0x%x) value (errno: %i)\n",
929 uint ## len ## _t value; \
930 getOneReg(id, &value); \
931 ss << value; \
936 uint8_t value[len / 8]; \
937 getOneReg(id, value); \
938 ccprintf(ss, "[0x%x", value[0]); \
940 ccprintf(ss, ", 0x%x", value[
[all...]
/gem5/ext/googletest/googletest/test/
H A Dgtest_pred_impl_unittest.cc57 explicit Bool(int val) : value(val != 0) {}
59 bool operator>(int n) const { return value > Bool(n).value; }
61 Bool operator+(const Bool& rhs) const { return Bool(value + rhs.value); }
63 bool operator==(const Bool& rhs) const { return value == rhs.value; }
65 bool value; member in struct:Bool
70 return os << (x.value ? "true" : "false");
H A Dgtest_stress_test.cc83 << "expecting " << suffix << " value for id " << id;
84 EXPECT_STREQ(IdToString(id).c_str(), property->value());
/gem5/src/dev/arm/
H A Drv_ctrl.hh83 virtual void write(uint32_t value) = 0;
126 // system lock value
/gem5/src/systemc/tests/systemc/datatypes/bit/sc_bitref/test01/
H A Dtest_bitref.cpp121 sc_assert ( lv[6].value() == SC_LOGIC_X );
/gem5/src/systemc/utils/
H A Dvcd.hh49 void addValue(const std::string &name, VcdTraceValBase *value);

Completed in 64 milliseconds

<<11121314151617181920