Home | History | Annotate | Download | only in minzip

Lines Matching refs:cond

56 #define CONDITION(cond)     (__builtin_expect((cond)!=0, 0))
60 #define LOGV_IF(cond, ...) ((void)0)
62 #define LOGV_IF(cond, ...) \
63 ( (CONDITION(cond)) \
80 #define LOGD_IF(cond, ...) \
81 ( (CONDITION(cond)) \
94 #define LOGI_IF(cond, ...) \
95 ( (CONDITION(cond)) \
108 #define LOGW_IF(cond, ...) \
109 ( (CONDITION(cond)) \
122 #define LOGE_IF(cond, ...) \
123 ( (CONDITION(cond)) \