Home
last modified time | relevance | path

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

/xnu-11417.121.6/osfmk/kern/
H A Dsmr.h328 __container_of_safe(smr_entered_load(&(head)->first), type_t, field)
338 __container_of_safe(smr_entered_load(&(elem)->field.next), \
350 ((it) = __container_of_safe(__it, typeof(*(it)), field)); \
362 __container_of_safe(smr_serialized_load(&(head)->first), type_t, link)
372 __container_of_safe(smr_serialized_load(&(elem)->field.next), \
384 ((it) = __container_of_safe(__it, typeof(*(it)), field)); \
400 ((it) = __container_of_safe(__it, typeof(*(it)), field)) && \
523 ((it) = __container_of_safe(smr_serialized_load(__prev_##it), \
/xnu-11417.121.6/bsd/sys/
H A Dcdefs.h1236 #define __container_of_safe(ptr, type_t, field) __extension__({ \ macro