Home
last modified time | relevance | path

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

/xnu-10002.41.9/osfmk/kern/
H A Dsmr.h325 __container_of_safe(smr_entered_load(&(head)->first), type_t, field)
335 __container_of_safe(smr_entered_load(&(elem)->field.next), \
347 ((it) = __container_of_safe(__it, typeof(*(it)), field)); \
359 __container_of_safe(smr_serialized_load(&(head)->first), type_t, link)
369 __container_of_safe(smr_serialized_load(&(elem)->field.next), \
381 ((it) = __container_of_safe(__it, typeof(*(it)), field)); \
397 ((it) = __container_of_safe(__it, typeof(*(it)), field)) && \
520 ((it) = __container_of_safe(smr_serialized_load(__prev_##it), \
/xnu-10002.41.9/bsd/sys/
H A Dcdefs.h1107 #define __container_of_safe(ptr, type_t, field) __extension__({ \ macro