/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/ |
H A D | assert.h | 2 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 D | assert.h | 36 #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 D | assert.h | 8 * 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 D | VBoxDTraceLibCWrappers.h | 24 #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 D | darwin.h | 80 #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 D | xf86_libc.h | 437 /* 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 D | darwin.h | 34 #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 D | xf86_libc.h | 437 /* 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 D | darwin.h | 81 #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 D | glx_ansic.h | 59 #ifndef assert 60 #define assert(a) macro 68 #ifdef assert 69 #undef assert macro 71 #include <assert.h>
|
H A D | xf86_libc.h | 443 /* 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 D | darwin.h | 81 #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 D | glx_ansic.h | 62 #ifndef assert 63 #define assert(a) macro 71 #ifdef assert 72 #undef assert macro 74 #include <assert.h>
|
H A D | xf86_libc.h | 441 /* XXX Disable assert as if NDEBUG was defined */ 443 #undef assert macro 444 #define assert(a) ((void)0) macro
|
/vbox/src/recompiler/ |
H A D | osdep.h | 38 #define assert(cond) Assert(cond) macro
|
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Include/ |
H A D | OpenSslSupport.h | 240 #define assert(expression) macro
|
/vbox/src/VBox/Additions/x11/x11include/4.3/programs/Xserver/hw/xfree86/os-support/ |
H A D | xf86_libc.h | 393 /* 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 D | malloc.c | 397 #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...] |