Home | History | Annotate | Download | only in linux

Lines Matching refs:PTR

271 #define	list_entry(PTR, TYPE, FIELD)	container_of(PTR, TYPE, FIELD)
272 #define list_first_entry(PTR, TYPE, FIELD) \
273 list_entry(list_first((PTR)), TYPE, FIELD)
274 #define list_first_entry_or_null(PTR, TYPE, FIELD) \
275 (list_empty((PTR)) ? NULL : list_entry(list_first((PTR)), TYPE, FIELD))
276 #define list_last_entry(PTR, TYPE, FIELD) \
277 list_entry(list_last((PTR)), TYPE, FIELD)
392 #define hlist_entry(PTR, TYPE, FIELD) container_of(PTR, TYPE, FIELD)