Lines Matching refs:NN_ASSERTMSG
34 #define NN_ASSERTMSG(exp, ...) \ macro
48 #define NN_ASSERTMSG(exp, ...) \ macro
53 #define NN_ASSERTMSG(exp, ...) \ macro
60 #define NN_ASSERTMSG(exp, ...) ((void)0) macro
124 #define NN_ASSERT(exp) NN_ASSERTMSG((exp), "%s", #exp)
132 #define NN_NULL_ASSERT(exp) NN_ASSERTMSG( (exp) != NULL, "%s must not be NULL", #ex…
136 #define NN_ALIGN_ASSERT(exp, align) NN_ASSERTMSG( ((uptr)(exp)) % (align) == 0, "%s(=0x%08x…
140 #define NN_MIN_ASSERT(exp, min) NN_ASSERTMSG( (exp) >= (min), "%s(=%d) must be >= %s(=%…
144 #define NN_MAX_ASSERT(exp, max) NN_ASSERTMSG( (exp) <= (max), "%s(=%d) must be <= %s(=%…
148 #define NN_MINMAX_ASSERT(exp, min, max) NN_ASSERTMSG( (exp) >= (min) && (exp) <= (max), "%s(=%d…
152 #define NN_EQUAL_ASSERT(exp, equ) NN_ASSERTMSG( (exp) == (equ), "%s(=%d) must be == %s(=%…
156 #define NN_NOT_EQUAL_ASSERT(exp, equ) NN_ASSERTMSG( (exp) != (equ), "%s(=%d) must be != %s(=%…
160 #define NN_POINTER_ASSERT(p) NN_ASSERTMSG(NN_IS_VALID_POINTER(p), "%s(=0x%08X) is in…
173 …NN_ASSERTMSG((-FLT_MAX <= (exp) && (exp) <= FLT_MAX), "Floating Point Value Error\n"#exp" is infin…