Searched refs:param (Results 26 - 42 of 42) sorted by relevance

12

/gem5/src/python/m5/util/
H A Ddot_writer.py152 for param in sorted(simNode._params.keys()):
153 value = simNode._values.get(param)
156 ini_strings.append(str(param) + "=" +
157 simNode._values[param].ini_str())
/gem5/ext/mcpat/
H A Dbasic_components.h249 void errorUnspecifiedParam(string param);
250 void errorNonPositiveParam(string param);
252 void warnUnrecognizedParam(XMLCSTR param);
/gem5/src/arch/arm/
H A Dsemihosting.cc156 ArmSemihosting::call64(ThreadContext *tc, uint32_t op, uint64_t param) argument
160 warn("Unknown aarch64 semihosting call: op = 0x%x, param = 0x%x",
161 op, param);
166 "%s (op = 0x%x, param = 0x%x)",
167 call->name, op, param);
176 DPRINTF(Semihosting, "Semihosting call64: %s(0x%x)\n", call->name, param);
177 argv[0] = param;
179 argv[i + 1] = proxy.read<uint64_t>(param + i * 8, endian);
191 ArmSemihosting::call32(ThreadContext *tc, uint32_t op, uint32_t param) argument
195 warn("Unknown aarch32 semihosting call: op = 0x%x, param
[all...]
H A Dsemihosting.hh75 uint64_t call64(ThreadContext *tc, uint32_t op, uint64_t param);
77 uint32_t call32(ThreadContext *tc, uint32_t op, uint32_t param);
185 * @param pos Byte offset from start of file.
291 * @param tc ThreadContext pointer for caller
292 * @param aarch64 True if in aarc64 mode, false otherwise.
/gem5/ext/googletest/googletest/test/
H A Dgtest-port_test.cc1025 void AddTwo(int* param) { *param += 2; } argument
1096 void CountingThreadFunc(pair<AtomicCounterWithMutex*, int> param) { argument
1097 for (int i = 0; i < param.second; ++i)
1098 param.first->Increment();
1131 void RunFromThread(void (func)(T), T param) { argument
1132 ThreadWithParam<T> thread(func, param, NULL);
1137 pair<ThreadLocal<std::string>*, std::string*> param) {
1138 *param.second = param
1136 RetrieveThreadLocalValue( pair<ThreadLocal<std::string>*, std::string*> param) argument
[all...]
H A Dgtest-param-test_test.cc52 # include "test/gtest-param-test_test.h"
724 // functional. Generator extern_gen is defined in gtest-param-test_test2.cc.
738 // gtest-param-test_test2.cc. ExternalInstantiationTest fixture class is
739 // defined in gtest-param-test_test.h.
754 // here and in gtest-param-test_test2.cc.
756 // is defined in gtest-param-test_test.h.
821 return info.param;
839 return info.param;
861 return info.param;
936 int value = info.param
[all...]
H A Dgtest_output_test_.cc763 return info.param;
/gem5/ext/googletest/googletest/src/
H A Dgtest-port.cc329 ThreadMainParam* param = new ThreadMainParam(runnable, thread_can_start); local
336 param, // Parameter to ThreadMainStatic
342 delete param;
360 scoped_ptr<ThreadMainParam> param(static_cast<ThreadMainParam*>(ptr));
361 if (param->thread_can_start_ != NULL)
362 param->thread_can_start_->WaitForNotification();
363 param->runnable_->Run();
520 static DWORD WINAPI WatcherThreadFunc(LPVOID param) { argument
522 reinterpret_cast<const ThreadIdAndHandle*>(param);
/gem5/src/sim/
H A Dserialize.cc319 objParamIn(CheckpointIn &cp, const string &name, SimObject * &param) argument
322 if (!cp.findObj(section, name, param)) {
/gem5/src/python/m5/
H A Dmain.py315 param = obj._params[pname]
316 default = getattr(param, 'default', '')
320 print(" desc: %s" % param.desc)
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-param-util.h61 param(a_param),
63 ParamType param; member in struct:testing::TestParamInfo
72 return PrintToString(info.param);
387 // test name generator and user param name generator.
H A Dgtest-port.h1586 // void ThreadFunc(int param) { /* Do things with param */ }
1600 ThreadWithParam(UserThreadFunc* func, T param, Notification* thread_can_start) argument
1602 param_(param),
1791 ThreadWithParam(UserThreadFunc* func, T param, Notification* thread_can_start) argument
1792 : ThreadWithParamBase(new RunnableImpl(func, param), thread_can_start) {
1799 RunnableImpl(UserThreadFunc* func, T param) argument
1801 param_(param) {
/gem5/src/dev/net/
H A Dethertap.cc38 #include <sys/param.h>
/gem5/configs/example/arm/
H A Dfs_bigLITTLE.py196 parser.add_argument("-P", "--param", action="append", default=[],
344 root.apply_config(options.param)
/gem5/ext/libelf/
H A Delf_update.c29 #include <sys/param.h>
/gem5/configs/common/
H A DSimulation.py614 root.apply_config(options.param)
/gem5/src/arch/arm/freebsd/
H A Dprocess.cc36 #include <sys/param.h>

Completed in 59 milliseconds

12