Searched refs:cond (Results 1 – 2 of 2) sorted by relevance
5 #define CHECK(cond) \ argument7 if (! (cond)) \9 printf ("Condition " #cond " not true on line %d\n", __LINE__); \
509 # define __glibc_unlikely(cond) __builtin_expect ((cond), 0) argument510 # define __glibc_likely(cond) __builtin_expect ((cond), 1) argument512 # define __glibc_unlikely(cond) (cond) argument513 # define __glibc_likely(cond) (cond) argument
Completed in 6 milliseconds