Searched refs:_checkFailed (Results 1 – 2 of 2) sorted by relevance
23 void _checkFailed(const char* expr, int line, const char* file) __attribute__((noreturn));24 #define SLICER_CHECK(expr) do { if(!(expr)) slicer::_checkFailed(#expr, __LINE__, __FILE__); } whil…
28 void _checkFailed(const char* expr, int line, const char* file) { in _checkFailed() function