Lines Matching refs:NN_ASSERTMSG

76 #define NN_ASSERTMSG(exp, ...)  macro
300 #undef NN_ASSERTMSG
336 … #define NN_ASSERTMSG(exp, ...) \ macro
342 #define NN_ASSERTMSG_WITH_RESULT(exp, result, ...) NN_ASSERTMSG(exp, __VA_ARGS__)
346 #define NN_ASSERTMSG(exp, ...) \ macro
352 #define NN_ASSERTMSG(exp, ...) \ macro
360 #define NN_ASSERTMSG(exp, ...) ((void)0) macro
366 #define NN_TASSERTMSG_(exp, ...) NN_ASSERTMSG(exp, __VA_ARGS__)
367 #define NN_SASSERTMSG_(exp, ...) NN_ASSERTMSG(exp, __VA_ARGS__)
368 #define NN_TASSERTMSG_WITH_RESULT_(exp, result, ...) NN_ASSERTMSG(exp, __VA_ARGS__)
369 #define NN_SASSERTMSG_WITH_RESULT_(exp, result, ...) NN_ASSERTMSG(exp, __VA_ARGS__)
407 #define NN_ASSERT( exp) NN_ASSERTMSG( (exp), "%s", #exp)
414 …#define NN_NULL_ASSERT( exp) NN_ASSERTMSG( (exp) != NULL, "%s must not be NULL", …
417 …#define NN_ALIGN_ASSERT( exp, align) NN_ASSERTMSG( ((uptr)(exp)) % (align) == 0, "%s(=0x%…
420 …#define NN_MIN_ASSERT( exp, min) NN_ASSERTMSG( (exp) >= (min), "%s(=%d) must be >= %s…
423 …#define NN_MAX_ASSERT( exp, max) NN_ASSERTMSG( (exp) <= (max), "%s(=%d) must be <= %s…
426 …#define NN_MINMAX_ASSERT( exp, min, max) NN_ASSERTMSG( (exp) >= (min) && (exp) <= (max), "%s(…
429 …#define NN_EQUAL_ASSERT( exp, equ) NN_ASSERTMSG( (exp) == (equ), "%s(=%d) must be == %s…
432 …#define NN_NOT_EQUAL_ASSERT( exp, equ) NN_ASSERTMSG( (exp) != (equ), "%s(=%d) must be != %s…
435 …#define NN_POINTER_ASSERT( p) NN_ASSERTMSG( NN_IS_VALID_POINTER(p), "%s(=0x%08X) is…
445 …#define NN_FLOAT_ASSERT(exp) NN_ASSERTMSG((-FLT_MAX <= (exp) && (exp) <= FLT_MAX), …