Searched refs:result (Results 376 - 400 of 446) sorted by relevance

<<1112131415161718

/gem5/ext/pybind11/tests/
H A Dconstructor_stats.h114 PyObject *result = PyRun_String( local
119 if (result == nullptr)
121 Py_DECREF(result);
/gem5/src/dev/virtio/
H A Dfs9p.cc512 struct addrinfo hints, *result; local
520 &hints, &result)) != 0)
524 for (struct addrinfo *rp = result; rp; rp = rp->ai_next) {
537 freeaddrinfo(result);
/gem5/src/systemc/tests/systemc/misc/sim_tests/cycle_dw8051_demo/
H A Dcycle_model.h145 void exec_bus_cycle(bus_cycle_type op, int addr, int data, int* result);
/gem5/tests/test-progs/asmtest/src/riscv/isa/rv64ua/
H A Dlrsc.S64 # expected result is 512*ncores*(ncores+1)
/gem5/ext/ply/ply/
H A Dlex.py450 result = []
453 result.append((name, f[1]))
455 result.append(f)
456 return result
466 result = []
469 result.append((fdict[n[0]],n[1]))
471 result.append(n)
472 return result
/gem5/util/pbs/
H A Dpbs.py171 self.result = pbs.fromchild.read()
179 self.result = ssh.fromchild.read()
/gem5/ext/systemc/src/sysc/datatypes/int/
H A Dsc_nbfriends.inc26 return the result object. The functions in
64 // Handles cases 3 and 4 and returns the result.
147 // Handles the case 4 and returns the result.
205 // Handles the cases 3-4 and returns the result.
263 // Handles the cases 3-4 and returns the result.
329 // Handles the cases 2-5 and returns the result.
461 // Handles the cases 3-5 and returns the result.
597 // Handles the cases 3-5 and returns the result.
H A Dsc_unsigned.cpp183 bool result; // True if inserting non-zero data. local
205 result = true;
261 result = true;
324 result = false;
364 return result;
371 uint64 result; local
376 result = 0;
378 result = digit[2];
380 result = (result << BITS_PER_DIGI
[all...]
/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_simcontext.cpp493 // | are performed. This will result in the queueing of processes for execution
1354 // | result = where to place time of the next event, if no event is
1359 sc_simcontext::next_time( sc_time& result ) const
1364 result = et->notify_time();
1622 sc_time result=SC_ZERO_TIME; // time of pending activity. local
1626 return result;
1633 result = simc_p->max_time();
1634 simc_p->next_time(result);
1635 result -= sc_time_stamp();
1637 return result;
[all...]
/gem5/src/systemc/dt/int/
H A Dsc_nbfriends.inc26 return the result object. The functions in
64 // Handles cases 3 and 4 and returns the result.
130 // Handles the case 4 and returns the result.
177 // Handles the cases 3-4 and returns the result.
225 // Handles the cases 3-4 and returns the result.
282 // Handles the cases 2-5 and returns the result.
383 // Handles the cases 3-5 and returns the result.
485 // Handles the cases 3-5 and returns the result.
H A Dsc_unsigned.cc204 bool result; // True if inserting non-zero data. local
220 result = true;
261 result = true;
311 result = false;
335 return result;
342 uint64 result; local
346 result = 0;
348 result = digit[2];
350 result = (result << BITS_PER_DIGI
[all...]
/gem5/tests/
H A Dtests.py74 help="Test result output file")
243 parser.add_argument("result", type=argparse.FileType("rb"), nargs="*",
258 suites = sum([ _load(f) for f in args.result ], [])
285 parser.add_argument("result", type=argparse.FileType("rb"), nargs="*",
290 suites = sum([ pickle.load(f) for f in args.result ], [])
/gem5/src/mem/
H A Dmem_checker_monitor.cc274 bool result = memchecker->completeRead(received_state->serial, local
280 if (!result) {
/gem5/src/base/stats/
H A Dhdf5.cc135 double data[1] = { info.result(), };
200 const VResult &vr(info.result());
/gem5/ext/systemc/src/sysc/tracing/
H A Dsc_vcd_trace.cpp2058 int result; local
2060 result = vcd_name_index;
2063 result = result / used_types_count;
2064 char char5 = (char)(result % used_types_count);
2066 result = result / used_types_count;
2067 char char4 = (char)(result % used_types_count);
2069 result = result / used_types_coun
[all...]
/gem5/src/cpu/checker/
H A Dcpu.hh77 * not be verified, specifically the result of a store conditional or
144 std::queue<InstResult> result; member in class:CheckerCPU
337 result.push(InstResult(std::forward<T>(t),
345 result.push(InstResult(std::forward<T>(t),
353 result.push(InstResult(std::forward<T>(t),
361 result.push(InstResult(std::forward<T>(t),
/gem5/ext/pybind11/include/pybind11/detail/
H A Dclass.h88 PyObject *result = PyRun_String(R"(\ local
98 if (result == nullptr)
100 Py_DECREF(result);
127 if (PyObject *result = PyObject_CallMethod(descr, "__set__", "OO", obj, value)) {
128 Py_DECREF(result);
/gem5/util/stats/
H A Dinfo.py57 result = []
62 result.append(val)
63 return result
179 result = self.source.data(self, self.ticks)
180 self.data = result.data
181 self.x = result.x
182 self.y = result.y
/gem5/ext/systemc/src/sysc/datatypes/bit/
H A Dsc_proxy.h1293 sc_logic_value_t result = sc_logic_value_t( 1 ); local
1296 result = sc_logic::and_table[result][x.get_bit( i )];
1298 return result;
1307 sc_logic_value_t result = sc_logic_value_t( 0 ); local
1310 result = sc_logic::or_table[result][x.get_bit( i )];
1312 return result;
1321 sc_logic_value_t result = sc_logic_value_t( 0 ); local
1324 result
[all...]
/gem5/ext/systemc/src/sysc/utils/
H A Dsc_hash.cpp634 char* result = (char*) malloc( strlen((const char*)k)+1 ); local
635 strcpy(result, (const char*) k);
636 return result;
/gem5/ext/googletest/googlemock/scripts/generator/cpp/
H A Dast.py485 result = []
500 result.append(Type(name_tokens[0].start, name_tokens[-1].end,
534 return result
595 result = []
613 result.append(p)
650 return result
720 result = self._GenerateOne(token)
721 if result is not None:
722 yield result
1396 result
[all...]
/gem5/util/style/
H A Dverifiers.py185 result = self.ui.prompt("(a)bort, (i)gnore, or (f)ix?",
187 if result == 'f':
189 elif result == 'a':
/gem5/src/sim/
H A Dpseudo_inst.cc505 uint64_t result = 0; local
522 result += bytes;
527 tc->getVirtProxy().writeBlob(vaddr, buf, result);
529 return result;
/gem5/ext/pybind11/include/pybind11/
H A Dcast.h78 auto result = PyList_Append(list_ptr, h.ptr()); local
79 if (result == -1)
628 if (auto result = foreign_typeinfo->module_local_load(src.ptr(), foreign_typeinfo)) {
629 value = result;
1413 tuple result(size);
1416 PyTuple_SET_ITEM(result.ptr(), counter++, entry.release().ptr());
1417 return result.release();
1612 // Detect whether returning a `type` from a cast on type's type_caster is going to result in a
1736 // store the result in the given variable. For other types, this is a no-op.
1775 tuple result(siz
[all...]
/gem5/ext/systemc/src/sysc/datatypes/fx/
H A Dsc_fxval.h1118 int result = sc_dt::cmp_scfx_rep( *a.m_rep, *tmp.m_rep ); \
1128 int result = sc_dt::cmp_scfx_rep( *tmp.m_rep, *b.m_rep ); \
1151 int result = sc_dt::cmp_scfx_rep( *a.m_rep, *b.m_rep ); \
1165 DEFN_REL_OP(<,result < 0)
1166 DEFN_REL_OP(<=,result <= 0)
1167 DEFN_REL_OP(>,result > 0 && result != 2)
1168 DEFN_REL_OP(>=,result >= 0 && result != 2)
1169 DEFN_REL_OP(==,result
[all...]

Completed in 57 milliseconds

<<1112131415161718