Searched refs:result (Results 351 - 375 of 446) sorted by relevance

<<1112131415161718

/gem5/src/python/m5/util/
H A Dgrammar.py112 result = parser.parse(lexer=lexer, debug=debug, tracking=tracking)
114 return result
/gem5/ext/dsent/
H A DDSENT.cc233 const Result* result = (const Result*)query_result; local
236 result->print(query_type + Model::TYPE_SEPARATOR + query_hier +
338 const Result* result = (const Result*)DSENT::processQuery( local
340 return result->calculateSum();
/gem5/tests/test-progs/asmtest/src/riscv/isa/rv64mi/
H A Daccess.S18 # Flipping just the MSB should result in an illegal address for RV64.
/gem5/ext/googletest/googletest/samples/
H A Dsample9_unittest.cc121 // standard output and attaches own result printer.
148 if (test_info.result()->Failed() &&
/gem5/src/mem/ruby/network/
H A DTopology.cc279 NetDest result;
297 result.add(mach);
305 "src: %d, next: %d, result: %s\n",
307 src, next, result);
309 return result;
/gem5/src/arch/arm/insts/
H A Dmem64.hh165 IntRegIndex result; member in class:ArmISA::MemoryDImmEx64
171 _base, _imm), result(_result)
238 IntRegIndex result; member in class:ArmISA::MemoryEx64
243 : Memory64(mnem, _machInst, __opClass, _dest, _base), result(_result)
H A Dvfp.cc489 // The result is too small. Denormalize.
558 // Reassemble and install the result.
559 uint32_t result = bits(mantissa, 9, 0); local
560 replaceBits(result, 14, 10, exponent);
562 result |= (1 << 15);
563 return result;
635 // Reassemble the result.
636 uint64_t result = bits(mantissa, mWidth-1, 0); local
637 replaceBits(result, sBitPos-1, mWidth, exponent);
639 result |
648 uint64_t result; local
658 uint64_t result; local
[all...]
H A Dmem.hh230 IntRegIndex result; member in class:ArmISA::MemoryExImm
236 result(_result)
242 printIntReg(os, result);
273 IntRegIndex result; member in class:ArmISA::MemoryExDImm
279 _base, _add, _imm), result(_result)
285 printIntReg(os, result);
/gem5/util/style/
H A Dregion.py226 result = self.copy()
227 result &= other
228 return result
/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_object.cpp111 std::string result; local
115 result = buffer;
117 return result;
/gem5/ext/pybind11/tests/
H A Dtest_numpy_vectorize.py30 result = f(a, b, c)
31 assert np.allclose(result, a * b * c)
32 assert result.flags.f_contiguous
33 # All inputs are F order and full or singletons, so we the result is in col-major order:
H A Dtest_stl.cpp265 std::vector<Placeholder *> result;
266 result.push_back(new Placeholder());
267 return result;
/gem5/src/base/
H A Dstatistics.cc98 pair<MapType::iterator, bool> result = local
101 assert(result.second && "this should never fail");
469 Formula::result(VResult &vec) const function in class:Stats::Formula
472 vec = root->result();
499 result(vec);
/gem5/ext/ply/ply/
H A Dcpp.py543 result = "0L"
550 result = "1L"
552 result = "0L"
562 tokens[i].value = self.t_INTEGER_TYPE(result)
583 result = eval(expr)
586 result = 0
587 return result
670 result = self.evalexpr(args)
671 if not result:
682 result
[all...]
/gem5/ext/googletest/googletest/src/
H A Dgtest-death-test.cc177 bool result; local
178 if (GTEST_KILLED_BY_SIGNAL_OVERRIDE_(signum_, exit_status, &result)) {
179 return result;
403 // Called in the parent process only. Reads the result code of the death
432 // Called in the parent process only. Reads the result code of the death
700 const int death_test_index = info->result()->death_test_count();
998 void StackLowerThanAddress(const void* ptr, bool* result) GTEST_NO_INLINE_;
999 void StackLowerThanAddress(const void* ptr, bool* result) { argument
1001 *result = (&dummy < ptr);
1008 bool result; local
[all...]
H A Dgtest-internal-inl.h463 // This is the default global test part result reporter used in UnitTestImpl.
470 // result in the current test.
471 virtual void ReportTestPartResult(const TestPartResult& result);
479 // This is the default per thread test part result reporter used in
486 // delegates to the current global test part result reporter of *unit_test_.
487 virtual void ReportTestPartResult(const TestPartResult& result);
507 // By default, each per-thread test result repoter just passes a new
508 // TestPartResult to the global test result reporter, which registers the
509 // test part result for the currently running test.
511 // Returns the global test part result reporte
999 const Integer result = static_cast<Integer>(parsed); local
[all...]
/gem5/ext/systemc/src/sysc/datatypes/misc/
H A Dsc_concatref.h68 // returns an sc_signed result, whereas an sc_concatref minus a value was
69 // returning an sc_unsigned result. Now both sc_unsigned and sc_concatref
70 // minus a value return an sc_signed result.
221 uint64 result; local
223 result = m_right_p->concat_get_uint64();
227 result = (m_left_p->concat_get_uint64() << m_len_r) |
228 (result & ~(mask << m_len_r));
233 result = result & ~(mask << m_len);
235 return result;
[all...]
/gem5/src/systemc/ext/dt/misc/
H A Dsc_concatref.hh68 // returns an sc_signed result, whereas an sc_concatref minus a value was
69 // returning an sc_unsigned result. Now both sc_unsigned and sc_concatref
70 // minus a value return an sc_signed result.
233 uint64 result; local
235 result = m_right_p->concat_get_uint64();
238 result = (m_left_p->concat_get_uint64() << m_len_r) |
239 (result & ~(mask << m_len_r));
243 result = result & ~(mask << m_len);
245 return result;
[all...]
/gem5/src/cpu/checker/
H A Dcpu_impl.hh201 while (!result.empty()) {
202 result.pop();
491 // properly by the CPU. Grab the result from the
494 } else if (inst->numDestRegs() > 0 && !result.empty()) {
496 inst->numDestRegs(), result.size());
497 for (int i = 0; i < inst->numDestRegs() && !result.empty(); i++) {
498 checker_val = result.front();
499 result.pop();
508 "Unknown type of result\n");
529 // the option to only warn on loads having a result erro
[all...]
/gem5/ext/pybind11/include/pybind11/
H A Dpybind11.h159 handle result = cast_out::cast(
163 process_attributes<Extra...>::postcall(call, result);
165 return result;
435 result = PYBIND11_TRY_NEXT_OVERLOAD; local
482 result other than PYBIND11_TRY_NEXT_OVERLOAD.
624 result = func.impl(call);
626 result = PYBIND11_TRY_NEXT_OVERLOAD;
629 if (result.ptr() != PYBIND11_TRY_NEXT_OVERLOAD)
648 if (overloaded && !second_pass.empty() && result.ptr() == PYBIND11_TRY_NEXT_OVERLOAD) {
653 result
840 auto result = reinterpret_borrow<module>(PyImport_AddModule(full_name.c_str())); local
2060 PyObject *result = PyRun_String( local
[all...]
/gem5/src/sim/
H A Dsyscall_emul.hh1003 int result = rename(old_name.c_str(), new_name.c_str()); local
1004 return (result == -1) ? -errno : result;
1051 int result = chmod(path.c_str(), hostMode); local
1052 if (result < 0)
1151 int result = fchmod(sim_fd, hostMode); local
1153 return (result < 0) ? -errno : 0;
1255 int result = stat(path.c_str(), &hostBuf); local
1257 if (result < 0)
1285 int result local
1288 int result = stat64(path.c_str(), &hostBuf); local
1322 int result = stat(path.c_str(), &hostBuf); local
1325 int result = stat64(path.c_str(), &hostBuf); local
1354 int result = fstat(sim_fd, &hostBuf); local
1357 int result = fstat64(sim_fd, &hostBuf); local
1388 int result = lstat(path.c_str(), &hostBuf); local
1418 int result = lstat(path.c_str(), &hostBuf); local
1421 int result = lstat64(path.c_str(), &hostBuf); local
1450 int result = fstat(sim_fd, &hostBuf); local
1480 int result = statfs(path.c_str(), &hostBuf); local
1648 int result = fstatfs(sim_fd, &hostBuf); local
1684 int result = readv(sim_fd, hiov, count); local
1727 int result = writev(sim_fd, hiov, count); local
2122 int result = utimes(path.c_str(), hostTimeval); local
[all...]
/gem5/ext/systemc/src/sysc/datatypes/int/
H A Dsc_uint_base.cpp179 bool result; // True if inserting non-zero value. local
188 result = val != 0;
229 return result;
626 bool result; // True if inserting non-zero value. local
634 result = val != 0;
683 return result;
/gem5/src/systemc/dt/int/
H A Dsc_uint_base.cc192 bool result; // True if inserting non-zero value. local
201 result = val != 0;
236 return result;
615 bool result; // True if inserting non-zero value. local
623 result = val != 0;
664 return result;
/gem5/src/systemc/ext/dt/bit/
H A Dsc_proxy.hh1129 value_type result = value_type(1); local
1132 result = sc_logic::and_table[result][x.get_bit(i)];
1134 return result;
1142 value_type result = value_type(0); local
1145 result = sc_logic::or_table[result][x.get_bit(i)];
1147 return result;
1155 value_type result = value_type(0); local
1158 result
[all...]
/gem5/src/systemc/tests/include/
H A DSimpleBusAT.h308 bool result =
311 if (result)
328 return result;

Completed in 75 milliseconds

<<1112131415161718