Home
last modified time | relevance | path

Searched refs:cond (Results 1 – 2 of 2) sorted by relevance

/bootable/recovery/minzip/
DLog.h56 #define CONDITION(cond) (__builtin_expect((cond)!=0, 0)) argument
60 #define LOGV_IF(cond, ...) ((void)0) argument
62 #define LOGV_IF(cond, ...) \ argument
63 ( (CONDITION(cond)) \
80 #define LOGD_IF(cond, ...) \ argument
81 ( (CONDITION(cond)) \
94 #define LOGI_IF(cond, ...) \ argument
95 ( (CONDITION(cond)) \
108 #define LOGW_IF(cond, ...) \ argument
109 ( (CONDITION(cond)) \
[all …]
/bootable/recovery/edify/
Dexpr.c108 char* cond = Evaluate(state, argv[0]); in IfElseFn() local
109 if (cond == NULL) { in IfElseFn()
113 if (BooleanString(cond) == true) { in IfElseFn()
114 free(cond); in IfElseFn()
118 free(cond); in IfElseFn()
121 return StringValue(cond); in IfElseFn()