Home
last modified time | relevance | path

Searched refs:ck_pr_cas_ptr (Results 1 – 7 of 7) sorted by relevance

/f-stack/freebsd/contrib/ck/include/
H A Dck_hp_fifo.h97 ck_pr_cas_ptr(&fifo->tail, tail, next); in ck_hp_fifo_enqueue_mpmc()
99 } else if (ck_pr_cas_ptr(&fifo->tail->next, next, entry) == true) in ck_hp_fifo_enqueue_mpmc()
104 ck_pr_cas_ptr(&fifo->tail, tail, entry); in ck_hp_fifo_enqueue_mpmc()
127 ck_pr_cas_ptr(&fifo->tail, tail, next); in ck_hp_fifo_tryenqueue_mpmc()
129 } else if (ck_pr_cas_ptr(&fifo->tail->next, next, entry) == false) in ck_hp_fifo_tryenqueue_mpmc()
133 ck_pr_cas_ptr(&fifo->tail, tail, entry); in ck_hp_fifo_tryenqueue_mpmc()
161 ck_pr_cas_ptr(&fifo->tail, tail, next); in ck_hp_fifo_dequeue_mpmc()
163 } else if (ck_pr_cas_ptr(&fifo->head, head, next) == true) in ck_hp_fifo_dequeue_mpmc()
194 ck_pr_cas_ptr(&fifo->tail, tail, next); in ck_hp_fifo_trydequeue_mpmc()
196 } else if (ck_pr_cas_ptr(&fifo->head, head, next) == false) in ck_hp_fifo_trydequeue_mpmc()
H A Dck_stack.h86 return ck_pr_cas_ptr(&target->head, stack, entry); in ck_stack_trypush_upmc()
136 if (ck_pr_cas_ptr(&target->head, entry, entry->next) == true) { in ck_stack_trypop_upmc()
/f-stack/freebsd/contrib/ck/include/spinlock/
H A Dmcs.h66 r = ck_pr_cas_ptr(queue, NULL, node); in ck_spinlock_mcs_trylock()
131 ck_pr_cas_ptr(queue, node, NULL) == true) { in ck_spinlock_mcs_unlock()
/f-stack/freebsd/contrib/ck/include/gcc/sparcv9/
H A Dck_pr.h182 ck_pr_cas_ptr(void *target, void *compare, void *set) in ck_pr_cas_ptr() function
/f-stack/freebsd/contrib/ck/include/gcc/ppc64/
H A Dck_pr.h218 ck_pr_cas_ptr(void *target, void *compare, void *set) in ck_pr_cas_ptr() function
/f-stack/freebsd/contrib/ck/include/gcc/arm/
H A Dck_pr.h320 ck_pr_cas_ptr(void *target, void *compare, void *set) in ck_pr_cas_ptr() function
/f-stack/freebsd/netpfil/ipfw/nat64/
H A Dnat64lsn.c288 ck_pr_cas_ptr(pgptr, oldpg, pg); in nat64lsn_get_pg()
861 ck_pr_cas_ptr(pgptr, pg, firstpg); in nat64lsn_expire_portgroups()