Lines Matching refs:NN_SASSERTMSG_
72 #define NN_SASSERTMSG_(exp, ...) \ macro
94 #define NN_SASSERTMSG_(exp, ...) \ macro
103 #define NN_SASSERTMSG_(exp, ...) \ macro
113 #define NN_SASSERTMSG_(exp, ...) ((void)0) macro
126 #define NN_SASSERT_(exp) NN_SASSERTMSG_((exp), "%s", #exp)
134 #define NN_NULL_SASSERT_(exp) NN_SASSERTMSG_( (exp) != NULL, "%s must not be NULL", #…
138 #define NN_ALIGN_SASSERT_(exp, align) NN_SASSERTMSG_( ((uptr)(exp)) % (align) == 0, "%s(=0x%0…
142 #define NN_MIN_SASSERT_(exp, min) NN_SASSERTMSG_( (exp) >= (min), "%s(=%d) must be >= %s(…
146 #define NN_MAX_SASSERT_(exp, max) NN_SASSERTMSG_( (exp) <= (max), "%s(=%d) must be <= %s(…
150 #define NN_MINMAX_SASSERT_(exp, min, max) NN_SASSERTMSG_( (exp) >= (min) && (exp) <= (max), "%s(=…
154 #define NN_EQUAL_SASSERT_(exp, equ) NN_SASSERTMSG_( (exp) == (equ), "%s(=%d) must be == %s(…
158 #define NN_NOT_EQUAL_SASSERT_(exp, equ) NN_SASSERTMSG_( (exp) != (equ), "%s(=%d) must be != %s(…
162 #define NN_POINTER_SASSERT_(p) NN_SASSERTMSG_(NN_IS_VALID_POINTER(p), "%s(=0x%08X) is …
177 …NN_SASSERTMSG_((-FLT_MAX <= (exp) && (exp) <= FLT_MAX), "Floating Point Value Error\n"#exp" is inf…