Lines Matching refs:new

360 atomic_cas_8(volatile uint8_t *target, uint8_t cmp, uint8_t new)  in atomic_cas_8()  argument
364 *target = new; in atomic_cas_8()
369 atomic_cas_uchar(volatile uchar_t *target, uchar_t cmp, uchar_t new) in atomic_cas_uchar() argument
373 *target = new; in atomic_cas_uchar()
378 atomic_cas_16(volatile uint16_t *target, uint16_t cmp, uint16_t new) in atomic_cas_16() argument
382 *target = new; in atomic_cas_16()
387 atomic_cas_ushort(volatile ushort_t *target, ushort_t cmp, ushort_t new) in atomic_cas_ushort() argument
391 *target = new; in atomic_cas_ushort()
396 atomic_cas_32(volatile uint32_t *target, uint32_t cmp, uint32_t new) in atomic_cas_32() argument
400 *target = new; in atomic_cas_32()
405 atomic_cas_uint(volatile uint_t *target, uint_t cmp, uint_t new) in atomic_cas_uint() argument
409 *target = new; in atomic_cas_uint()
414 atomic_cas_ulong(volatile ulong_t *target, ulong_t cmp, ulong_t new) in atomic_cas_ulong() argument
418 *target = new; in atomic_cas_ulong()
423 atomic_cas_64(volatile uint64_t *target, uint64_t cmp, uint64_t new) in atomic_cas_64() argument
427 *target = new; in atomic_cas_64()
432 atomic_cas_ptr(volatile void *target, void *cmp, void *new) in atomic_cas_ptr() argument
436 *(void **)target = new; in atomic_cas_ptr()
441 atomic_swap_8(volatile uint8_t *target, uint8_t new) in atomic_swap_8() argument
444 *target = new; in atomic_swap_8()
449 atomic_swap_char(volatile uchar_t *target, uchar_t new) in atomic_swap_char() argument
452 *target = new; in atomic_swap_char()
457 atomic_swap_16(volatile uint16_t *target, uint16_t new) in atomic_swap_16() argument
460 *target = new; in atomic_swap_16()
465 atomic_swap_ushort(volatile ushort_t *target, ushort_t new) in atomic_swap_ushort() argument
468 *target = new; in atomic_swap_ushort()
473 atomic_swap_32(volatile uint32_t *target, uint32_t new) in atomic_swap_32() argument
476 *target = new; in atomic_swap_32()
481 atomic_swap_uint(volatile uint_t *target, uint_t new) in atomic_swap_uint() argument
484 *target = new; in atomic_swap_uint()
489 atomic_swap_64(volatile uint64_t *target, uint64_t new) in atomic_swap_64() argument
492 *target = new; in atomic_swap_64()
497 atomic_swap_ptr(volatile void *target, void *new) in atomic_swap_ptr() argument
500 *(void **)target = new; in atomic_swap_ptr()
505 atomic_swap_ulong(volatile ulong_t *target, ulong_t new) in atomic_swap_ulong() argument
508 *target = new; in atomic_swap_ulong()