Home
last modified time | relevance | path

Searched refs:__container_of_safe (Results 1 – 2 of 2) sorted by relevance

/xnu-11215.81.4/osfmk/kern/
H A Dsmr.h327 __container_of_safe(smr_entered_load(&(head)->first), type_t, field)
337 __container_of_safe(smr_entered_load(&(elem)->field.next), \
349 ((it) = __container_of_safe(__it, typeof(*(it)), field)); \
361 __container_of_safe(smr_serialized_load(&(head)->first), type_t, link)
371 __container_of_safe(smr_serialized_load(&(elem)->field.next), \
383 ((it) = __container_of_safe(__it, typeof(*(it)), field)); \
399 ((it) = __container_of_safe(__it, typeof(*(it)), field)) && \
522 ((it) = __container_of_safe(smr_serialized_load(__prev_##it), \
/xnu-11215.81.4/bsd/sys/
H A Dcdefs.h1231 #define __container_of_safe(ptr, type_t, field) __extension__({ \ macro