Searched refs:value (Results 401 - 425 of 497) sorted by relevance

<<11121314151617181920

/gem5/ext/googletest/googletest/test/
H A Dgtest_xml_output_unittest.py183 date_time_str = actual.documentElement.getAttributeNode('timestamp').value
196 # timestamp value should be near the current local time
/gem5/configs/example/
H A Dgarnet_synth_traffic.py59 Takes decimal value between 0 to 1 (eg. 0.225). \
/gem5/src/arch/
H A Disa_parser.py1446 # or an OpClass value. To avoid having to import a complete
1634 # output of the ISA parser is maintained, but the value (or lack
1828 t.type = self.reserved_map.get(t.value, 'ID')
1835 t.value = int(t.value,0)
1837 error(t.lexer.lineno, 'Integer value "%s" too large' % t.value)
1838 t.value = 0
1846 t.value = t.value[
[all...]
/gem5/ext/pybind11/tests/
H A Dtest_tagbased_polymorphic.cpp109 struct polymorphic_type_hook<itype, detail::enable_if_t<std::is_base_of<Animal, itype>::value>>
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-generated-function-mockers.h360 tn ::testing::internal::Function<__VA_ARGS__>::ArgumentTuple>::value \
379 tn ::testing::internal::Function<__VA_ARGS__>::ArgumentTuple>::value \
399 tn ::testing::internal::Function<__VA_ARGS__>::ArgumentTuple>::value \
421 tn ::testing::internal::Function<__VA_ARGS__>::ArgumentTuple>::value \
447 tn ::testing::internal::Function<__VA_ARGS__>::ArgumentTuple>::value \
475 tn ::testing::internal::Function<__VA_ARGS__>::ArgumentTuple>::value \
505 tn ::testing::internal::Function<__VA_ARGS__>::ArgumentTuple>::value \
537 tn ::testing::internal::Function<__VA_ARGS__>::ArgumentTuple>::value \
571 tn ::testing::internal::Function<__VA_ARGS__>::ArgumentTuple>::value \
607 tn ::testing::internal::Function<__VA_ARGS__>::ArgumentTuple>::value \
[all...]
/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_process.h241 sc_throw_it( const EXCEPT& value ) : m_value(value) { }
246 EXCEPT m_value; // value to be thrown.
747 // throw_status value.
/gem5/src/arch/x86/
H A Dutility.cc364 storeFloat80(void *_mem, double value) argument
366 fp80_t fp80 = fp80_cvfd(value);
/gem5/src/python/m5/util/
H A Dcode_formatter.py174 def __setitem__(self, item, value):
175 self._dict[item] = value
H A Ddot_writer.py153 value = simNode._values.get(param)
154 if value != None:
155 # parameter name = value in HTML friendly format
/gem5/tests/configs/
H A Dgpu-ruby.py51 def setOption(parser, opt_str, value = 1):
57 # set the value
58 exec("parser.values.%s = %s" % (opt.dest, value))
66 # get the value
/gem5/src/base/
H A Dcircular_queue.hh174 static_assert(std::is_same<reference, T&>::value,
384 typename std::enable_if<std::is_integral<Idx>::value,reference>::type
521 * had only one value prior to insertion.
636 * possible, then the round value is _round, unless _tail is at the end of
/gem5/configs/example/arm/
H A Dfs_bigLITTLE.py69 def _to_ticks(value):
72 return m5.ticks.fromSeconds(m5.util.convert.anyToLatency(value))
/gem5/src/cpu/testers/traffic_gen/
H A Dbase.cc211 if (!(static_cast<int>(stats.numSuppressed.value()) % 10000))
213 name(), stats.numSuppressed.value());
/gem5/ext/ply/ply/
H A Dlex.py71 return "LexToken(%s,%r,%d,%d)" % (self.type,self.value,self.lineno,self.lexpos)
324 tok.value = m.group()
368 tok.value = lexdata[lexpos]
370 tok.type = tok.value
378 tok.value = self.lexdata[lexpos:]
1037 sys.stdout.write("(%s,%r,%d,%d)\n" % (tok.type, tok.value, tok.lineno,tok.lexpos))
/gem5/ext/systemc/src/sysc/utils/
H A Dsc_vector.h52 static constexpr bool value member in struct:sc_core::sc_meta::is_more_const
55 >::value
56 && ( is_const<CT>::value >= is_const<T>::value ) );
184 typename U::policy::element_type>::value>::type* = NULL)
285 typename OtherPolicy::element_type>::value>::type* = NULL)
/gem5/configs/ruby/
H A DGPU_VIPER_Region.py221 self.size.value = self.size.value / options.num_tccs
222 if ((self.size.value / long(self.assoc)) < 128):
223 self.size.value = long(128 * self.assoc)
243 self.size.value /= options.num_dirs
283 dir_size.value = mem_module_size
H A DGPU_VIPER_Baseline.py220 self.size.value = self.size.value / options.num_tccs
221 if ((self.size.value / long(self.assoc)) < 128):
222 self.size.value = long(128 * self.assoc)
244 self.size.value /= options.num_dirs
300 dir_size.value = mem_module_size
H A DGPU_VIPER.py257 self.size.value = self.size.value / options.num_tccs
258 if ((self.size.value / long(self.assoc)) < 128):
259 self.size.value = long(128 * self.assoc)
283 self.size.value /= options.num_dirs
322 dir_size.value = mem_module_size
H A DGPU_RfO.py74 self.size.value += (options.num_compute_units *
75 (MemorySize(options.tcp_size).value) *
281 if ((self.size.value / long(self.assoc)) < 128):
282 self.size.value = long(128 * self.assoc)
342 self.size.value /= options.num_dirs
/gem5/ext/googletest/googletest/src/
H A Dgtest.cc618 // return the same value, as it always calls GetTypeId<>() from the
624 // The value of GetTestTypeId() as seen from within the Google Test
856 // value using delete[]. Returns the wide string, or NULL if the
873 // value using delete[]. Returns the ANSI string, or NULL if the
1371 // TODO(wan): do not print the value of an expression if it's
1579 // depending on the value of the expected_to_be_substring parameter.
1958 // Formats an int value as "%02d".
1959 std::string String::FormatIntWidth2(int value) { argument
1961 ss << std::setfill('0') << std::setw(2) << value;
1965 // Formats an int value a
1966 FormatHexInt(int value) argument
1968 ss << std::hex << std::uppercase << value; local
1973 FormatByte(unsigned char value) argument
2237 RecordProperty(const std::string& key, const std::string& value) argument
2242 RecordProperty(const std::string& key, int value) argument
2244 value_message << value; local
3607 OutputXmlAttribute( std::ostream* stream, const std::string& element_name, const std::string& name, const std::string& value) argument
4175 RecordProperty(const std::string& key, const std::string& value) argument
5053 ParseBoolFlag(const char* str, const char* flag, bool* value) argument
5070 ParseInt32Flag(const char* str, const char* flag, Int32* value) argument
5087 ParseStringFlag(const char* str, const char* flag, std::string* value) argument
[all...]
/gem5/src/arch/arm/
H A Dfaults.cc385 uint32_t value; local
391 value = exc_class << 26;
398 value |= 1 << 25;
402 value |= 1 << 25;
413 value |= cond << 20;
414 value |= 1 << 24;
416 value |= bits(issVal, 19, 0);
418 value |= issVal;
420 tc->setMiscReg(syndrome_reg, value);
736 // which register to use since they hold the same value
[all...]
/gem5/src/cpu/o3/probe/
H A Delastic_trace.cc203 (std::size_t)maxTempStoreSize.value());
292 (std::size_t)maxPhysRegDepMapSize.value());
621 (uint32_t)maxNumDependents.value());
774 // value was written to, that is commitTick.
/gem5/src/base/loader/
H A Delf_object.cc364 // If this value is nonzero, we need to flip the relocate flag.
440 Addr value = sym.st_value - base + offset; local
441 if (symtab->insert(value & mask, sym_name)) {
442 DPRINTF(Loader, "Symbol: %-40s value %#x\n",
443 sym_name, value);
/gem5/ext/googletest/googlemock/scripts/
H A Dupload.py168 for key, value in self.extra_headers.iteritems():
169 req.add_header(key, value)
224 # This is a dummy value to allow us to identify when we're successful.
502 fields: A sequence of (name, value) elements for regular form fields.
503 files: A sequence of (name, filename, value) elements for data to be
514 for (key, value) in fields:
518 lines.append(value)
519 for (key, filename, value) in files:
525 lines.append(value)
/gem5/ext/googletest/googletest/scripts/
H A Dupload.py168 for key, value in self.extra_headers.iteritems():
169 req.add_header(key, value)
224 # This is a dummy value to allow us to identify when we're successful.
502 fields: A sequence of (name, value) elements for regular form fields.
503 files: A sequence of (name, filename, value) elements for data to be
514 for (key, value) in fields:
518 lines.append(value)
519 for (key, filename, value) in files:
525 lines.append(value)

Completed in 105 milliseconds

<<11121314151617181920