Symbol: atomic_and_32
common/lib/libc/atomic/atomic_and_32_cas.c
63
atomic_op_alias(atomic_and_32,_atomic_and_32)
sys/arch/amd64/amd64/db_interface.c
181
atomic_and_32(&ci->ci_flags, ~CPUF_PAUSE);
sys/arch/arm/cortex/gicv3.c
159
atomic_and_32(&sc->sc_enabled_sgippi, ~mask);
sys/arch/arm/pic/pic.c
450
atomic_and_32(ipending, ~__BIT(irq));
sys/arch/arm/pic/pic.c
514
atomic_and_32(iblocked, ~blocked);
sys/arch/i386/i386/db_interface.c
181
atomic_and_32(&ci->ci_flags, ~CPUF_PAUSE);
sys/arch/macppc/dev/pmu.c
1073
atomic_and_32(&sc->sc_pending, ~PMU_EV_LID);
sys/arch/macppc/dev/pmu.c
1080
atomic_and_32(&sc->sc_pending, ~PMU_EV_BUTTON);
sys/arch/macppc/dev/pmu.c
989
atomic_and_32(&sc->sc_pending, ~socket);
sys/arch/powerpc/powerpc/powerpc_machdep.c
568
#define CPUSET_DEL(set, cpu) atomic_and_32(&(set), ~CPUSET_SINGLE(cpu))
sys/arch/powerpc/powerpc/powerpc_machdep.c
569
#define CPUSET_SUB(set1, set2) atomic_and_32(&(set1), ~(set2))
sys/arch/x86/acpi/acpi_wakeup.c
202
atomic_and_32(&ci->ci_flags, ~CPUF_RUNNING);
sys/arch/x86/x86/ipi.c
179
atomic_and_32(&ci->ci_flags, ~CPUF_RUNNING);
sys/dev/dm/dm_ioctl.c
542
atomic_and_32(&dmv->flags, ~(DM_SUSPEND_FLAG | DM_INACTIVE_PRESENT_FLAG));
sys/dev/dm/dm_ioctl.c
598
atomic_and_32(&dmv->flags, ~DM_INACTIVE_PRESENT_FLAG);
sys/dev/hid/uhid_common.c
533
atomic_and_32(&sc->sc_state, ~UHID_IMMED);
sys/dev/hyperv/vmbus.c
457
atomic_and_32(&sc->sc_flags, (uint32_t)~VMBUS_SCFLAG_SYNIC);
sys/dev/hyperv/vmbusvar.h
234
atomic_and_32(((volatile u_int *)p) + (b >> 5), ~(1 << (b & 0x1f)));
sys/dev/pci/if_enavar.h
173
atomic_and_32(&(adapter)->flags, ENA_FLAG_BITMASK(bit))
sys/fs/tmpfs/tmpfs_vnops.c
1091
atomic_and_32(&node->tn_gen, ~TMPFS_NODE_GEN_MASK);
sys/kern/subr_kcpuset.c
515
atomic_and_32(&kcp->bits[j], ~(__BIT(i & KC_MASK)));
sys/kern/subr_kcpuset.c
524
atomic_and_32(&kcp1->bits[j], kcp2->bits[j]);
sys/kern/subr_kcpuset.c
544
atomic_and_32(&kcp1->bits[j], ~kcp2->bits[j]);
tests/lib/libc/atomic/t_atomic_and.c
106
ATF_TP_ADD_TC(tp, atomic_and_32);
tests/lib/libc/atomic/t_atomic_and.c
65
atf_and(atomic_and_32, uint32_t, PRIx32);