Searched defs:cond (Results 1 – 2 of 2) sorted by relevance
435 # define LIKELY(cond) __builtin_expect ((cond), 1) argument436 # define UNLIKELY(cond) __builtin_expect ((cond), 0) argument438 # define LIKELY(cond) (cond) argument439 # define UNLIKELY(cond) (cond) argument
254 pthread_cond_t cond; /* Conditional wait for empty queue to populate member