Lines Matching refs:exp
171 #define ASSERT(exp) \ argument
172 (void) ((exp) || \
173 (OSPanic(__FILE__, __LINE__, "Failed assertion " #exp), 0))
178 #define ASSERTMSG(exp, ...) \ argument
179 (void) ((exp) || \
182 #define ASSERTMSG(exp, msg) \ argument
183 (void) ((exp) || \
189 #define ASSERTMSG1(exp, msg, param1) \ argument
190 (void) ((exp) || \
196 #define ASSERTMSG2(exp, msg, param1, param2) \ argument
197 (void) ((exp) || \
203 #define ASSERTMSG3(exp, msg, param1, param2, param3) \ argument
204 (void) ((exp) || \
210 #define ASSERTMSG4(exp, msg, param1, param2, param3, param4) \ argument
211 (void) ((exp) || \
220 #define ASSERT(exp) ((void) 0) argument
225 #define ASSERTMSG(exp, ...) ((void) 0) argument
227 #define ASSERTMSG(exp, msg) ((void) 0) argument
232 #define ASSERTMSG1(exp, msg, param1) ((void) 0) argument
235 #define ASSERTMSG2(exp, msg, param1, param2) ((void) 0) argument
238 #define ASSERTMSG3(exp, msg, param1, param2, param3) ((void) 0) argument
241 #define ASSERTMSG4(exp, msg, param1, param2, param3, param4) ((void) 0) argument