/src/common/lib/libc/atomic/ |
atomic_cas_by_cas32.c | 55 uint32_t old32, new32; local in function:_atomic_cas_16 58 old32 = *ptr; 59 if ((old32 & mask) != old32_part) 60 return (uint16_t)((old32 & mask) >> shift); 61 new32 = (old32 & ~mask) | new32_part; 62 } while (_atomic_cas_32(ptr, old32, new32) != old32); 79 uint32_t old32, new32; local in function:crt_alias 82 old32 = *ptr; 83 if ((old32 & mask) != old32_part [all...] |
atomic_cas_by_cas32.c | 55 uint32_t old32, new32; local in function:_atomic_cas_16 58 old32 = *ptr; 59 if ((old32 & mask) != old32_part) 60 return (uint16_t)((old32 & mask) >> shift); 61 new32 = (old32 & ~mask) | new32_part; 62 } while (_atomic_cas_32(ptr, old32, new32) != old32); 79 uint32_t old32, new32; local in function:crt_alias 82 old32 = *ptr; 83 if ((old32 & mask) != old32_part [all...] |
/src/sys/external/bsd/ipf/netinet/ |
ip_fil_compat.c | 1694 frauth_4_1_32_t *old32; local in function:ipf_in_compat 1696 KMALLOC(old32, frauth_4_1_32_t *); 1697 if (old32 == NULL) { 1702 error = COPYIN(obj->ipfo_ptr, old32, sizeof(*old32)); 1704 frauth_4_1_32_to_current(old32, ptr); 1708 KFREE(old32);
|
ip_fil_compat.c | 1694 frauth_4_1_32_t *old32; local in function:ipf_in_compat 1696 KMALLOC(old32, frauth_4_1_32_t *); 1697 if (old32 == NULL) { 1702 error = COPYIN(obj->ipfo_ptr, old32, sizeof(*old32)); 1704 frauth_4_1_32_to_current(old32, ptr); 1708 KFREE(old32);
|