Searched refs:parameter (Results 1 - 11 of 11) sorted by relevance

/gem5/ext/drampower/src/
H A DParametrisable.cc46 void Parametrisable::pushParameter(const Parameter& parameter) argument
48 parameters.push_back(parameter);
51 void Parametrisable::setParameter(const Parameter& parameter, argument
58 while (p != parameters.end() && !(p->getId() == parameter.getId() &&
60 if (p->getId() == parameter.getId())
66 parameters.push_back(parameter);
69 parameters.insert(p, parameter);
89 * Get a parameter with a specific id. Should there be a multiplicity,
105 cerr << "Could not find parameter '" << id << "' (" << index << ")" << endl;
H A DParameter.cc113 ostream& Data::operator<<(ostream& os, const Parameter& parameter) argument
115 os << "<parameter " <<
116 "id=\"" << parameter.getId() << "\" " <<
117 "type=\"" << parameter.getType() << "\" "
118 "value=\"" << parameter.getValue() << "\" />";
H A DParametrisable.h63 * Push a new parameter into the in-order vector without checking
66 virtual void pushParameter(const Parameter& parameter);
69 * Set a parameter with a given index (default 0). This could for
72 void setParameter(const Parameter& parameter,
76 * Get a parameter of a given name and of a certain index. Calling
77 * this method on an object that has no parameter of that name
84 * Remove a parameter with a specific name and index. If a parameter
96 * Check if a parameter of a certain name exists in the object.
102 * Convenience function to set a variable to the value stored in a parameter
[all...]
H A DParameter.h100 const Parameter& parameter);
/gem5/ext/mcpat/cacti/
H A Dcacti.mk27 SRCS = area.cc bank.cc mat.cc main.cc Ucache.cc io.cc technology.cc basic_circuit.cc parameter.cc \
/gem5/ext/mcpat/
H A Dmcpat.mk57 parameter.cc \
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-param-util.h56 // Input to a parameterized test name generator, describing a test parameter.
57 // Consists of the parameter value and the integer parameter index.
375 // integer test parameter index.
405 // Stores a parameter value and later creates tests parameterized with that
411 explicit ParameterizedTestFactory(ParamType parameter) : argument
412 parameter_(parameter) {}
433 virtual TestFactoryBase* CreateTestFactory(ParamType parameter) = 0;
452 virtual TestFactoryBase* CreateTestFactory(ParamType parameter) { argument
453 return new ParameterizedTestFactory<TestCase>(parameter);
[all...]
/gem5/ext/dsent/
H A DDSENT.cc132 // If it exists in the config file, set the parameter
150 // If it exists in the config file, set the parameter
217 const ParameterMap* parameter = (const ParameterMap*)query_result; local
220 cout << *parameter; local
/gem5/ext/googletest/googletest/include/gtest/
H A Dgtest.h268 // The second parameter prevents this overload from being considered if
656 // Returns the name of the parameter type, or NULL if this is not a typed
664 // Returns the text representation of the value parameter, or NULL if this
753 // Name of the parameter type, or NULL if this is not a typed or a
756 // Text representation of the value parameter, or NULL if this is not a
788 // a_type_param: the name of the test's type parameter, or NULL if
802 // Returns the name of the parameter type, or NULL if this is not a
932 // Name of the parameter type, or NULL if this is not a typed or a
1468 // We used to have a second template parameter instead of Secret*. That
1469 // template parameter woul
1765 SetParam(const ParamType* parameter) argument
[all...]
/gem5/configs/example/
H A Dread_config.py74 raise Exception('Can\'t parse string: %s for parameter'
/gem5/ext/googletest/googletest/src/
H A Dgtest.cc561 // Google Test. The 'result' parameter specifies where to report the
571 // Google Test. The 'result' parameter specifies where to report the
789 // the gtest_stack_trace_depth flag. The skip_count parameter
1309 // The ignoring_case parameter is true iff the assertion is a
1579 // depending on the value of the expected_to_be_substring parameter.
1754 // code_point parameter is of type UInt32 because wchar_t may not be
2333 // function returns its result via an output parameter pointer because VC++
2532 // type_param: the name of the test's type parameter, or NULL if
2534 // value_param: text representation of the test's value parameter,
2716 // a_type_param: the name of the test case's type parameter, o
[all...]

Completed in 35 milliseconds