Home
last modified time | relevance | path

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

/freebsd/contrib/jemalloc/include/jemalloc/internal/
H A Dql.h23 #define ql_first(a_head) ((a_head)->qlh_first) macro
26 ((ql_first(a_head) != NULL) \
27 ? qr_prev(ql_first(a_head), a_field) : NULL)
34 ((ql_first(a_head) != (a_elm)) ? qr_prev((a_elm), a_field) \
39 if (ql_first(a_head) == (a_qlelm)) { \
40 ql_first(a_head) = (a_elm); \
48 if (ql_first(a_head) != NULL) { \
49 qr_before_insert(ql_first(a_head), (a_elm), a_field); \
51 ql_first(a_head) = (a_elm); \
55 if (ql_first(a_head) != NULL) { \
[all …]
H A Dextent_inlines.h413 return ql_first(list); in extent_list_first()