Searched refs:error (Results 51 - 75 of 105) sorted by relevance

12345

/gem5/tests/test-progs/asmtest/src/riscv/env/pt/
H A Driscv_test.h19 # error
/gem5/src/mem/slicc/
H A Dutil.py74 def error(self, message, *args): member in class:Location
/gem5/src/arch/
H A Disa_parser.py71 # The two keys here are that Python will give a syntax error if
103 def error(*args): function
258 error(lineno, 'error defining "%s": %s.' % (name, exc))
272 error(lineno,
558 error('Attempt to read integer register as FP')
575 error('Attempt to write integer register as FP')
977 error('Attempt to read condition-code register as FP')
994 error('Attempt to write condition-code register as FP')
1043 error('Attemp
[all...]
H A Dmicro_asm.py173 def error(lineno, string, print_traceback = False): function
301 error(t.lineno, "illegal character '%s'" % t.value[0])
476 # Parse error handler. Note that the argument here is the offending
480 error(t.lineno, "syntax error at '%s'" % t.value)
482 error(0, "unknown syntax error", True)
/gem5/ext/dnet/
H A Dos.h84 # error "bytesex unknown"
H A Dtcp.h39 # error "need to include <dnet.h>"
/gem5/src/mem/slicc/ast/
H A DFuncDeclAST.py94 self.error("Duplicate method: %s:%s()" % (parent, self.ident))
/gem5/ext/nomali/include/libnomali/
H A Dnomali.h39 * NoMali error codes.
42 /** No error */
44 /** Unknown error */
56 * @note This error, and higher error numbers, can be issued if
58 * tread this condition as an unknown error.
169 * error.
174 * @error NOMALI_E_OK on success.
175 * @error NOMALI_E_MEMORY if a memory allocation failed.
176 * @error NOMALI_E_INVALI
[all...]
/gem5/util/term/
H A Dterm.c115 int s, error; local
117 if ((error = getaddrinfo(host, port, &hints, &res)))
118 errx(1, "getaddrinfo: %s", gai_strerror(error));
/gem5/src/dev/pci/
H A Dcopy_engine_defs.hh198 CHANERR error; member in struct:CopyEngineReg::ChanRegs
207 paramOut(cp, "error", error._data);
217 paramIn(cp, "error", error._data);
/gem5/ext/nomali/lib/
H A Dnomali_api.cc30 "No error",
31 "Unknown error",
38 "NoMali API error descriptions out of sync!");
300 nomali_errstr(nomali_error_t error) argument
302 if (error < NOMALI_E_NUM_ERRORS)
303 return errstrs[error];
305 return "Invalid error number";
/gem5/ext/ply/ply/
H A Dcpp.py173 # error()
175 # Report a preprocessor error/warning of some kind
178 def error(self,file,line,msg): member in class:Preprocessor
338 self.error(self.source,tokenlist[0].lineno,"Missing '(' in macro arguments")
365 self.error(self.source,tokenlist[-1].lineno,"Missing ')' in macro arguments")
496 self.error(self.source,t.lineno,"Macro %s requires %d arguments" % (t.value,len(m.arglist)))
500 self.error(self.source,t.lineno,"Macro %s must have at least %d arguments" % (t.value, len(m.arglist)-1))
502 self.error(self.source,t.lineno,"Macro %s must have at least %d argument" % (t.value, len(m.arglist)-1))
559 self.error(self.source,tokens[i].lineno,"Malformed defined()")
585 self.error(sel
[all...]
/gem5/util/
H A Do3-pipeview.py352 parser.error('incorrect number of arguments')
356 parser.error('invalid range')
360 parser.error('invalid range')
H A Dcheckpoint_aggregator.py162 parser.error("You must specify atleast two checkpoint files that "\
/gem5/ext/libelf/
H A Dlibelf_align.c51 #error Need the __alignof__ builtin.
H A Delf_update.c54 * section header table entries updated. An error is signalled
681 goto error;
718 goto error;
729 goto error;
763 goto error;
781 goto error;
787 goto error;
794 goto error;
828 error:
H A D_libelf.h63 LIBELF_PRIVATE(error) = ((ELF_E_##E & LIBELF_ELF_ERROR_MASK)| \
/gem5/util/ccdrv/
H A Ddevtime.c178 #error Architecture NOT SUPPORTED
/gem5/ext/pybind11/include/pybind11/
H A Dembed.h16 # error Embedding the interpreter is not supported with PyPy
70 /// Python 2.7/3.x compatible version of `PyImport_AppendInittab` and error checks.
94 has already been initialized is a fatal error.
/gem5/ext/testlib/
H A Dlog.py193 def error(self, message): member in class:LogWrapper
241 def error(self, message): member in class:TestLogWrapper
/gem5/configs/dram/
H A Dlat_mem_rd.py68 error = call(['protoc', '--python_out=configs/dram', variable
70 if not error:
/gem5/ext/ply/example/BASIC/
H A Dbasinterp.py44 self.error = 1
48 self.error = 1
65 self.error = 1
185 self.error = 0 # Indicates program error
197 if self.error: raise RuntimeError
/gem5/src/dev/storage/
H A Dide_disk.hh128 uint8_t error; member in struct:CommandReg
/gem5/src/arch/arm/insts/
H A Dvfp.hh332 volatile T error = val; local
333 error -= origVal;
334 error = -error;
335 if ( (error > 0.5) ||
336 ((error == 0.5) && (val >= 0)) )
/gem5/src/mem/slicc/symbols/
H A DStateMachine.py117 action.error("Duplicate action definition: %s" % action.ident)
122 action.error(" shorthand = %s" % action.short)
154 self.error("Multiple Transaction Buffer types in a " \
163 self.error("Multiple AbstractCacheEntry types in a " \
185 trans.error("Duplicate transition: %s" % trans)
247 self.error("Unknown c++ to python class conversion for c++ " \

Completed in 26 milliseconds

12345