Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/jemalloc/include/jemalloc/internal/
H A Dql.h26 ((ql_first(a_head) != NULL) \
39 if (ql_first(a_head) == (a_qlelm)) { \
40 ql_first(a_head) = (a_elm); \
48 if (ql_first(a_head) != NULL) { \
51 ql_first(a_head) = (a_elm); \
55 if (ql_first(a_head) != NULL) { \
62 if (ql_first(a_head) == (a_elm)) { \
63 ql_first(a_head) = qr_next(ql_first(a_head), a_field); \
65 if (ql_first(a_head) != (a_elm)) { \
68 ql_first(a_head) = NULL; \
[all …]
H A Dextent_inlines.h413 return ql_first(list); in extent_list_first()