Searched refs:error (Results 76 - 100 of 105) sorted by relevance

12345

/gem5/src/arch/arm/insts/
H A Dfplib.cc711 int error; // 0, 1, 2 or 3, where 2 means int_mant is wrong by exactly 0.5 local
728 error = mnt & 3;
732 error = (lsr16(mnt, 1 - exp) & 3) | !!(mnt & (lsl16(1, 1 - exp) - 1));
735 if (!biased_exp && error) { // xx should also check fpscr_val<11>
740 if ((rm == FPLIB_RN && (error == 3 ||
741 (error == 2 && (int_mant & 1)))) ||
742 (((rm == FPLIB_RP && !sgn) || (rm == FPLIB_RM && sgn)) && error)) {
756 if (error && rm == FPRounding_ODD)
777 if (error) {
795 int error; // local
872 int error; // 0, 1, 2 or 3, where 2 means int_mant is wrong by exactly 0.5 local
[all...]
/gem5/ext/mcpat/
H A DxmlParser.cc15 * as an error. Otherwise, this tring will be equivalent to:
41 * the "openFileHelper" function will always display error messages inside the
95 // to have "MessageBoxA" to display error messages for openFilHelper
166 return _CXML("No error");
556 // the following "openFileHelper" function to get an "error reporting mechanism" tailored to your needs.
573 // display error message (if any)
574 if (pResults.error != eXMLErrorNone) {
578 if (pResults.error == eXMLErrorFirstTagNotFound) {
585 "XML Parsing error inside file '%S'.\n%S\nAt line %i, column %i.\n%s%S%s"
587 "XML Parsing error insid
729 enum XMLError error; member in struct:XML
1980 enum XMLError error = xml.error; local
[all...]
H A DxmlParser.h125 // This is useful when you get error messages like:
224 /// Structure used to obtain error details if the parse fails.
226 enum XMLError error; member in struct:XMLResults
283 * "parseString" method will initialize the "pResults" variable with some information that can be used to trace the error.
289 * @param pResults a pointer to a XMLResults variable that will contain some information that can be used to trace the XML parsing error. You can have a user-friendly explanation of the parsing error with the "getError" function.
297 * "parseFile" method will initialize the "pResults" variable with some information that can be used to trace the error.
303 * @param pResults a pointer to a XMLResults variable that will contain some information that can be used to trace the XML parsing error. You can have a user-friendly explanation of the parsing error with the "getError" function.
306 /// Parse an XML file and return the root of a XMLNode tree representing the file. A very crude error checkin
[all...]
/gem5/ext/pybind11/include/pybind11/detail/
H A Dcommon.h51 # error pybind11 requires Intel C++ compiler v17 or newer
55 # error pybind11 requires clang 3.3 or newer
61 # error pybind11 requires Xcode/clang 5.0 or newer
65 # error pybind11 requires gcc 4.8 or newer
71 # error pybind11 requires MSVC 2015 update 3 or newer
440 static_assert(std::is_standard_layout<instance>::value, "Internal error: `pybind11::detail::instance` is not standard layout!");
660 /// Set the error using the Python C API
677 PYBIND11_RUNTIME_EXCEPTION(cast_error, PyExc_RuntimeError) /// Thrown when pybind11::cast or handle::call fail due to a type casting error
713 /// RAII wrapper that temporarily clears any Python error state
/gem5/src/dev/pci/
H A Dcopy_engine.cc282 pkt->setLE<uint32_t>(cr.error());
423 cr.error(~pkt->getLE<uint32_t>() & cr.error());
/gem5/src/base/
H A Dremote_gdb.cc207 // Exception to throw when an error needs to be reported to the client.
210 string error; member in struct:__anon24::CmdError
211 CmdError(std::string _error) : error(_error)
418 // remote gdb. Note that the error codes are ignored by gdb at
487 send(e.error.c_str());
608 // send an error back.
/gem5/util/tap/
H A Dtap.cc479 goto error;
507 error:
515 DPRINTF("Calling it quits because of poll error\n");
/gem5/src/dev/storage/
H A Dide_atareg.h58 #error "No endianess defined"
223 #define ATAPI_CMDE_SLOG 0x0001 /* SMART error logging supported */
H A Dide_disk.cc184 /* The error register must be set to 0x1 on start-up to
185 indicate that no diagnostic error was detected */
186 cmdReg.error = 0x1;
231 *data = cmdReg.error;
/gem5/src/sim/
H A Dbyteswap.hh154 #error Invalid Endianess
/gem5/tests/test-progs/asmtest/src/riscv/env/v/
H A Dvm.c219 # error
/gem5/util/
H A Dcpt_upgrader.py46 # both time consuming and error-prone.
295 parser.error("You must specify a checkpoint file to modify or a "\
H A Dgem5img.py192 self.parser.error('Incorrect number of arguments')
/gem5/src/arch/arm/
H A Dsemihosting.cc318 int64_t error = file->close(); local
320 argv[1], file->fileName(), error);
321 if (error < 0) {
322 return retError(-error);
416 // Assume there was an error if the status value is negative.
/gem5/ext/testlib/
H A Dmain.py284 log.test_log.error('Unable to run a standalone test.\n'
/gem5/ext/googletest/googletest/src/
H A Dgtest-internal-inl.h44 # error "gtest-internal-inl.h is part of Google Test's internal implementation."
45 # error "It must not be included except by Google Test itself."
253 // be created, prints an error and exits.
259 // an error and exits. If in_subprocess_for_death_test, sharding is
267 // returns default_val. If it is not an Int32, prints an error and
958 // Returns the message describing the last system error, regardless of the
H A Dgtest-death-test.cc72 // included, or there will be a compiler error. This trick exists to
258 // exec-style death test child process, in which case the error
314 // Returns the message describing the last system error in errno.
324 Message error; local
331 error << buffer;
336 GTEST_LOG_(FATAL) << error.GetString();
531 // the test's captured standard error output; the death test
570 buffer << " Result: died but not with expected error.\n"
613 // any possible error messages) from the pipe, and its stderr and then
1018 // spawn(2) there instead. The function dies with an error messag
[all...]
/gem5/src/systemc/tests/
H A Dverify.py177 except subprocess.CalledProcessError, error:
178 returncode = error.returncode
/gem5/src/cpu/kvm/
H A Dvm.cc61 #error Unsupported KVM version
/gem5/ext/systemc/src/sysc/qt/md/
H A Dhppa.s184 ; from the user's function. It is an error for `cleanup' to return.
/gem5/ext/dnet/
H A Dip.h43 # error "need to include <dnet.h>"
/gem5/ext/googletest/googletest/include/gtest/
H A Dgtest_pred_impl.h40 # error Do not include gtest_pred_impl.h directly. Include gtest.h instead.
/gem5/util/streamline/
H A Dm5stats2streamline.py895 error = False
900 print "WARNING: IO error in stats file"
902 error = True
924 if (window_end_regex.match(line) or error):
950 if error:
/gem5/src/systemc/tests/systemc/misc/gnats/pr-503/
H A Dpr-503.cpp119 sc_int<3> error; local
156 error = 0;
574 // Reset internal error number and flag for return buffer
2803 error = err_no_reg;
2805 error = 0;
/gem5/src/systemc/tests/systemc/misc/gnats/pr-503-neg/
H A Dpr-503-neg.cpp119 sc_int<3> error; local
156 error = 0;
574 // Reset internal error number and flag for return buffer
2803 error = err_no_reg;
2805 error = 0;

Completed in 98 milliseconds

12345