Searched defs:ql_first (Results 1 - 1 of 1) sorted by relevance

/external/jemalloc/include/jemalloc/internal/
H A Dql.h20 #define ql_first(a_head) ((a_head)->qlh_first) macro
23 ((ql_first(a_head) != NULL) \
24 ? qr_prev(ql_first(a_head), a_field) : NULL)
31 ((ql_first(a_head) != (a_elm)) ? qr_prev((a_elm), a_field) \
36 if (ql_first(a_head) == (a_qlelm)) { \
37 ql_first(a_head) = (a_elm); \
45 if (ql_first(a_head) != NULL) { \
46 qr_before_insert(ql_first(a_head), (a_elm), a_field); \
48 ql_first(a_head) = (a_elm); \
52 if (ql_first(a_hea
[all...]

Completed in 61 milliseconds