Lines Matching refs:NN_TASSERTMSG_
366 #define NN_TASSERTMSG_(exp, ...) NN_ASSERTMSG(exp, __VA_ARGS__) macro
373 #define NN_TASSERTMSG_(exp, ...) \ macro
383 #define NN_TASSERTMSG_(exp, ...) \ macro
395 #define NN_TASSERTMSG_(exp, ...) ((void)0) macro
408 #define NN_TASSERT_(exp) NN_TASSERTMSG_((exp), "%s", #exp)
415 …#define NN_NULL_TASSERT_(exp) NN_TASSERTMSG_( (exp) != NULL, "%s must not be NULL", …
418 …#define NN_ALIGN_TASSERT_(exp, align) NN_TASSERTMSG_( ((uptr)(exp)) % (align) == 0, "%s(=0x%…
421 …#define NN_MIN_TASSERT_(exp, min) NN_TASSERTMSG_( (exp) >= (min), "%s(=%d) must be >= %s…
424 …#define NN_MAX_TASSERT_(exp, max) NN_TASSERTMSG_( (exp) <= (max), "%s(=%d) must be <= %s…
427 …#define NN_MINMAX_TASSERT_(exp, min, max) NN_TASSERTMSG_( (exp) >= (min) && (exp) <= (max), "%s(…
430 …#define NN_EQUAL_TASSERT_(exp, equ) NN_TASSERTMSG_( (exp) == (equ), "%s(=%d) must be == %s…
433 …#define NN_NOT_EQUAL_TASSERT_(exp, equ) NN_TASSERTMSG_( (exp) != (equ), "%s(=%d) must be != %s…
436 …#define NN_POINTER_TASSERT_(p) NN_TASSERTMSG_(NN_IS_VALID_POINTER(p), "%s(=0x%08X) is…
446 …#define NN_FLOAT_TASSERT_(exp) NN_TASSERTMSG_((-FLT_MAX <= (exp) && (exp) <= FLT_MAX)…