Lines Matching refs:new

362 atomic_cas_8(volatile uint8_t *target, uint8_t cmp, uint8_t new)  in atomic_cas_8()  argument
366 *target = new; in atomic_cas_8()
371 atomic_cas_uchar(volatile uchar_t *target, uchar_t cmp, uchar_t new) in atomic_cas_uchar() argument
375 *target = new; in atomic_cas_uchar()
380 atomic_cas_16(volatile uint16_t *target, uint16_t cmp, uint16_t new) in atomic_cas_16() argument
384 *target = new; in atomic_cas_16()
389 atomic_cas_ushort(volatile ushort_t *target, ushort_t cmp, ushort_t new) in atomic_cas_ushort() argument
393 *target = new; in atomic_cas_ushort()
398 atomic_cas_32(volatile uint32_t *target, uint32_t cmp, uint32_t new) in atomic_cas_32() argument
402 *target = new; in atomic_cas_32()
407 atomic_cas_uint(volatile uint_t *target, uint_t cmp, uint_t new) in atomic_cas_uint() argument
411 *target = new; in atomic_cas_uint()
416 atomic_cas_ulong(volatile ulong_t *target, ulong_t cmp, ulong_t new) in atomic_cas_ulong() argument
420 *target = new; in atomic_cas_ulong()
425 atomic_cas_64(volatile uint64_t *target, uint64_t cmp, uint64_t new) in atomic_cas_64() argument
429 *target = new; in atomic_cas_64()
434 atomic_cas_ptr(volatile void *target, void *cmp, void *new) in atomic_cas_ptr() argument
438 *(void **)target = new; in atomic_cas_ptr()
443 atomic_swap_8(volatile uint8_t *target, uint8_t new) in atomic_swap_8() argument
446 *target = new; in atomic_swap_8()
451 atomic_swap_char(volatile uchar_t *target, uchar_t new) in atomic_swap_char() argument
454 *target = new; in atomic_swap_char()
459 atomic_swap_16(volatile uint16_t *target, uint16_t new) in atomic_swap_16() argument
462 *target = new; in atomic_swap_16()
467 atomic_swap_ushort(volatile ushort_t *target, ushort_t new) in atomic_swap_ushort() argument
470 *target = new; in atomic_swap_ushort()
475 atomic_swap_32(volatile uint32_t *target, uint32_t new) in atomic_swap_32() argument
478 *target = new; in atomic_swap_32()
483 atomic_swap_uint(volatile uint_t *target, uint_t new) in atomic_swap_uint() argument
486 *target = new; in atomic_swap_uint()
491 atomic_swap_64(volatile uint64_t *target, uint64_t new) in atomic_swap_64() argument
494 *target = new; in atomic_swap_64()
499 atomic_swap_ptr(volatile void *target, void *new) in atomic_swap_ptr() argument
502 *(void **)target = new; in atomic_swap_ptr()
507 atomic_swap_ulong(volatile ulong_t *target, ulong_t new) in atomic_swap_ulong() argument
510 *target = new; in atomic_swap_ulong()