Searched defs:assert (Results 1 - 18 of 18) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/
H A Dassert.h2 Provides a definition of the assert macro used to insert diagnostic messages
5 This header file defines the assert macro and refers to the NDEBUG macro,
8 Unlike other header files, assert.h is designed to be included multiple
11 If the NDEBUG macro is defined at the point where assert.h
12 is included, the assert macro is defined so as to not produce code.
30 #undef assert ///< Remove any existing definition for assert. macro
32 /** Internal helper function for the assert macro.
43 @param[in] file The name of the file containing the assert.
44 @param[in] func The name of the function containing the assert
75 #define assert macro
78 #define assert macro
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/
H A Dassert.h36 #undef assert macro
38 #define assert(_expr) ((void)0) macro
41 #define assert(_expr) (void)((!!(_expr)) || (_assert(#_expr, __FILE__, __LINE__), 0)) macro
/vbox/src/VBox/Devices/PC/ipxe/src/include/
H A Dassert.h8 * This file provides two assertion macros: assert() (for run-time
25 * This function exists so that the assert() macro can expand to
45 #define assert( condition ) \ macro
49 assert_printf ( "assert(%s) failed at %s line %d\n", \
/vbox/src/VBox/ExtPacks/VBoxDTrace/include/
H A DVBoxDTraceLibCWrappers.h24 #include <assert.h>
44 #include <iprt/assert.h>
59 #undef assert macro
60 #define assert(expr) Assert(expr) macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Ddarwin.h80 #undef assert macro
81 #define assert(x) { if ((x) == 0) \ macro
82 FatalError("assert failed on line %d of %s!\n", __LINE__, __FILE__); }
84 FatalError("assert failed on line %d of %s with kernel return 0x%x!\n", \
H A Dxf86_libc.h437 /* XXX Disable assert as if NDEBUG was defined */
439 #undef assert macro
440 #define assert(a) ((void)0) macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A Ddarwin.h34 #include <assert.h>
85 #undef assert macro
86 #define assert(x) { if ((x) == 0) \ macro
87 FatalError("assert failed on line %d of %s!\n", __LINE__, __FILE__); }
89 FatalError("assert failed on line %d of %s with kernel return 0x%x!\n", \
H A Dxf86_libc.h437 /* XXX Disable assert as if NDEBUG was defined */
439 #undef assert macro
440 #define assert(a) ((void)0) macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A Ddarwin.h81 #undef assert macro
82 #define assert(x) { if ((x) == 0) \ macro
83 FatalError("assert failed on line %d of %s!\n", __LINE__, __FILE__); }
85 FatalError("assert failed on line %d of %s with kernel return 0x%x!\n", \
H A Dglx_ansic.h59 #ifndef assert
60 #define assert(a) macro
68 #ifdef assert
69 #undef assert macro
71 #include <assert.h>
H A Dxf86_libc.h443 /* XXX Disable assert as if NDEBUG was defined */
445 #undef assert macro
446 #define assert(a) ((void)0) macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A Ddarwin.h81 #undef assert macro
82 #define assert(x) { if ((x) == 0) \ macro
83 FatalError("assert failed on line %d of %s!\n", __LINE__, __FILE__); }
85 FatalError("assert failed on line %d of %s with kernel return 0x%x!\n", \
H A Dglx_ansic.h62 #ifndef assert
63 #define assert(a) macro
71 #ifdef assert
72 #undef assert macro
74 #include <assert.h>
H A Dxf86_libc.h441 /* XXX Disable assert as if NDEBUG was defined */
443 #undef assert macro
444 #define assert(a) ((void)0) macro
/vbox/src/recompiler/
H A Dosdep.h38 #define assert(cond) Assert(cond) macro
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Include/
H A DOpenSslSupport.h240 #define assert(expression) macro
/vbox/src/VBox/Additions/x11/x11include/4.3/programs/Xserver/hw/xfree86/os-support/
H A Dxf86_libc.h393 /* XXX Disable assert as if NDEBUG was defined */
395 #undef assert macro
396 #define assert(a) ((void)0) macro
/vbox/src/libs/xpcom18a4/xpcom/build/
H A Dmalloc.c397 #include <assert.h>
399 #define assert(x) ((void)0)
2305 assert(((char*)p) >= ((char*)(av->sbrk_base)));
2310 assert(((char*)p + sz) <= ((char*)(av->top)));
2315 assert(((char*)p + sz) <= ((char*)(av->sbrk_base) + av->sbrked_mem));
2318 assert((long)(sz) >= (long)(MINSIZE));
2320 assert(prev_inuse(p));
2329 assert(! (((char*)p) >= ((char*)av->sbrk_base) &&
2333 assert(((p->prev_size + sz) & (av->pagesize-1)) == 0);
2335 assert(aligned_O
398 #define assert macro
[all...]

Completed in 440 milliseconds