Lines Matching refs:_bool_

30528         #define MS_ASSERT(_bool_) \
30530 if ( ! ( _bool_ ) ) \
30532 …diag_printf("\033[35m UTOPIA ASSERT: %s, %s %s %d\033[35m\n", #_bool_, __FILE__, __PRETTY_FUNCTION…
30537 #define MS_ASSERT(_bool_) \
30539 if ( ! ( _bool_ ) ) \
30541 …diag_printf("\033[35m UTOPIA ASSERT: %s, %s %s %d\033[35m\n", #_bool_, __FILE__, __PRETTY_FUNCTION…
30548 #define MS_ASSERT(_bool_) \
30550 if (!(_bool_)) \
30552 …printk("\033[35m ASSERT FAIL: %s, %s %s %d\033[35m\n", #_bool_, __FILE__, __PRETTY_FUNCTION__, __L…
30558 #define MS_ASSERT(_bool_) \
30560 if (!(_bool_)) \
30562 …printk("\033[35m ASSERT FAIL: %s, %s %s %d\033[35m\n", #_bool_, __FILE__, __PRETTY_FUNCTION__, __L…
30569 #define MS_ASSERT(_bool_) \
30571 if ( ! ( _bool_ ) ) \
30573 …printf("\033[35m UTOPIA ASSERT: %s, %s %s %d\033[35m\n", #_bool_, __FILE__, __PRETTY_FUNCTION__, _…
30578 #define MS_ASSERT(_bool_) \
30580 if ( ! ( _bool_ ) ) \
30582 …printf("\033[35m UTOPIA ASSERT: %s, %s %s %d\033[35m\n", #_bool_, __FILE__, __PRETTY_FUNCTION__, _…
30592 #define MS_PANIC(_bool_) \
30594 if ( ! ( _bool_ ) ) \
30596 …diag_printf("\033[35m UTOPIA ASSERT: %s %s %s %d\033[35m\n", #_bool_, __FILE__, __PRETTY_FUNCTION_…
30601 #define MS_PANIC(_bool_) \
30603 if ( ! ( _bool_ ) ) \
30605 …printf("\033[35m UTOPIA ASSERT: %s %s %s %d\033[35m\n", #_bool_, __FILE__, __PRETTY_FUNCTION__, __…
30610 #define MS_PANIC(_bool_) \
30612 if ( ! ( _bool_ ) ) \
30614 …printf("\033[35m UTOPIA ASSERT: %s %s %s %d\033[35m\n", #_bool_, __FILE__, __PRETTY_FUNCTION__, __…
63013 #define ASSERT(_bool_) \
63015 if ( ! ( _bool_ ) ) \
63017 … diag_printf("ASSERT FAIL: %s, %s %s %d\n", #_bool_, __FILE__, __PRETTY_FUNCTION__, __LINE__);\
63022 #define ASSERT(_bool_) MS_ASSERT(_bool_)