Home
last modified time | relevance | path

Searched refs:CK_CC_LIKELY (Results 1 – 9 of 9) sorted by relevance

/freebsd/sys/contrib/ck/include/
H A Dck_cc.h97 #ifndef CK_CC_LIKELY
98 #define CK_CC_LIKELY(x) x macro
H A Dck_sequence.h61 if (CK_CC_LIKELY((version & 1) == 0)) in ck_sequence_read_begin()
H A Dck_elide.h184 } while (CK_CC_LIKELY(--retry > 0)); \
H A Dck_ring.h270 if (CK_CC_LIKELY((producer - consumer) < mask)) { in _ck_ring_enqueue_reserve_mp()
338 if (CK_CC_LIKELY((producer - consumer) < mask)) { in _ck_ring_enqueue_mp()
/freebsd/sys/contrib/ck/src/
H A Dck_ec.c330 if (CK_CC_LIKELY(deadline.tv_sec <= 0)) { \
345 if (CK_CC_LIKELY( \
361 if (CK_CC_LIKELY(current != flagged_word)) { \
H A Dck_hs.c374 if (CK_CC_LIKELY(*cursor == CK_HS_EMPTY)) { in ck_hs_grow()
H A Dck_ht.c712 if (CK_CC_LIKELY(cursor->key == CK_HT_KEY_EMPTY)) { in ck_ht_grow_spmc()
H A Dck_rhs.c538 if (CK_CC_LIKELY(*cursor == CK_RHS_EMPTY)) { in ck_rhs_grow()
/freebsd/sys/contrib/ck/include/gcc/
H A Dck_cc.h99 #define CK_CC_LIKELY(x) (__builtin_expect(!!(x), 1)) macro