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