HomeSort by: relevance | last modified time | path
    Searched refs:Exception (Results 1 - 17 of 17) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/utilities/
utexcep.c 3 * Module Name: utexcep - Exception code support
61 * RETURN: A string containing the exception text. A valid pointer is
64 * DESCRIPTION: This function translates an ACPI exception into an ASCII
73 const ACPI_EXCEPTION_INFO *Exception;
79 Exception = AcpiUtValidateException (Status);
80 if (!Exception)
82 /* Exception code was not recognized */
85 "Unknown exception code: 0x%8.8X", Status));
90 return (Exception->Name);
102 * RETURN: A string containing the exception text. NULL if exception i
    [all...]
  /src/sys/external/bsd/acpica/dist/tools/acpihelp/
acpihelp.h 100 #define AH_DISPLAY_EXCEPTION_TEXT(Status, Exception) \
102 Exception->Name, Exception->Description)
  /src/sys/arch/hppa/spmath/
sfcmp.c 69 /* Check if a NaN is involved. Signal an invalid exception when
74 && (Exception(cond) || Sgl_isone_signaling(left)))
78 && (Exception(cond) || Sgl_isone_signaling(right)) ) )
dfcmp.c 69 /* Check if a NaN is involved. Signal an invalid exception when
74 && (Exception(cond) || Dbl_isone_signaling(leftp1)))
78 && (Exception(cond) || Dbl_isone_signaling(rightp1))) )
float.h 403 /* Declare exception registers equivalent to FPUs architecture
419 #define Set_exceptiontype_and_instr_field(exception,instruction,object) \
420 object = ((exception) << 26) | (instruction)
488 #define Exception(cond) Exceptionbit(cond)
  /src/sys/external/bsd/acpica/dist/tools/acpiexec/
aeexception.c 3 * Module Name: aeexception - Exception and signal handlers
65 * PARAMETERS: Standard exception handler parameters
69 * DESCRIPTION: System exception handler for AcpiExec utility. Called from
70 * the core ACPICA code after any exception during method
88 const char *Exception;
92 Exception = AcpiFormatException (AmlStatus);
97 "Exception %s during execution\n", Exception);
143 Arg[1].String.Pointer = ACPI_CAST_PTR (char, Exception);
144 Arg[1].String.Length = strlen (Exception);
    [all...]
  /src/sys/external/bsd/acpica/dist/compiler/
aslmessages.c 332 * PARAMETERS: MessageId - ASL message ID (exception code) to be
335 * RETURN: A string containing the exception message text.
359 return ("[Unknown iASL Compiler exception ID]");
372 return ("[Unknown iASL Table Compiler exception ID]");
385 return ("[Unknown iASL Preprocessor exception ID]");
393 return ("[Unknown iASL exception ID]");
421 return ("Unknown exception level");
440 * MessageId - ASL exception code to be formatted
442 * RETURN: Fully encoded exception code
444 * DESCRIPTION: Build the full exception code from the error level and th
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/scripts/
sancov.py 29 raise Exception("Wrong bitness: %d" % bits)
61 raise Exception('Bad magic word in %s' % path)
70 raise Exception('File %s is short (< 8 bytes)' % path)
130 raise Exception('Error reading file %s' % path)
143 raise Exception('Wrong bits size in the map')
187 raise Exception('Unexpected raw file name %s' % f)
209 raise Exception('File not found: %s' % binary)
cpplint.py 238 'algobase.h', 'algorithm', 'alloc.h', 'bitset', 'deque', 'exception',
253 'defalloc.h', 'deque.h', 'editbuf.h', 'exception', 'fstream',
730 class _IncludeError(Exception):
1882 # immediately inside parens (eg "f( 3, 4 )"). We make an exception
2242 # complain, we check if it is an exception to the rule: The previous
2248 exception = False
2256 exception = (search_position >= 0
2265 exception = (Match(r' {4}\w[^\(]*\)\s*(const\s*)?(\{\s*$|:)',
2269 if not exception:
2414 # Exception: "for ( ; foo; bar)" and "for (foo; bar; )" are allowed
    [all...]
  /src/common/dist/zlib/contrib/dotzlib/DotZLib/
CodecBase.cs 57 catch (Exception)
DotZLib.cs 82 #region Exception classes
84 /// The exception that is thrown when an error occurs on the zlib dll
92 /// <param name="errorCode">The zlib error code that caused the exception</param>
102 /// <param name="errorCode">The zlib error code that caused the exception</param>
138 /// <exception cref="ArgumentException">The sum of offset and count is larger than the length of <c>data</c></exception>
139 /// <exception cref="ArgumentNullException"><c>data</c> is a null reference</exception>
140 /// <exception cref="ArgumentOutOfRangeException">Offset or count is negative.</exception>
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/scripts/
asan_symbolize.py 123 except Exception:
180 except Exception:
378 raise Exception('Unknown system')
422 raise Exception('Failed to launch or use llvm-symbolizer.')
  /src/sys/arch/vax/vax/
intvec.S 97 NOVEC; # Compatibility Exception, 30
105 NOVEC; # System Backplane Exception/BIerror, 50
  /src/sys/arch/m68k/060sp/dist/
fplsp.doc 45 instructions normally take exception vector #11
51 with taking the exception.
114 Exception reporting:
117 entry. If an exception should be reported, then the package forces
118 this exception using implemented floating-point instructions.
120 floating-point Operand Error exception, then the library routine
122 exception. Although the FPIAR will be undefined for the enabled
123 Operand Error exception handler, the user will at least be able
  /src/sys/arch/m68k/fpsp/
fpsp.h 37 * fpsp.h --- stack frame offsets during FPSP exception handling
39 * These equates are used to access the exception frame, the fsave
66 * | Exception Frame |
70 * Positive offsets from A6 refer to the exception frame. Negative
82 * and then either 'bra fpsp_done' if the exception was completely
84 * label to a routine that will process a real exception of the
86 * if the FPU state after the exception is idle.
88 * Sometimes the exception handler will transform the fsave area
89 * because it needs to report an exception back to the user. This
118 FPCR_ENABLE equ USER_FPCR+2 ; FPCR exception enable
    [all...]
  /src/sys/external/bsd/acpica/dist/include/
acpixf.h 515 ACPI_STATUS Exception))
  /src/common/dist/zlib/contrib/delphi/
ZLib.pas 62 stream will raise an exception. Using Seek to move the stream pointer
63 will raise an exception.
106 the stream will raise an exception.
158 EZlibError = class(Exception);

Completed in 24 milliseconds