Searched refs:ql_first (Results 1 - 5 of 5) 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...]
/external/jemalloc/test/include/test/
H A Dmq.h66 msg = ql_first(&mq->msgs); \
/external/jemalloc/test/unit/
H A Dql.c20 assert_ptr_null(ql_first(head), "Unexpected element for empty list");
63 assert_c_eq(ql_first(head)->id, entries[0].id, "Element id mismatch");
/external/jemalloc/src/
H A Dprof.c425 if (ql_first(&ctx->cnts_ql) == NULL && ctx->cnt_merged.curobjs == 0 &&
463 if (opt_prof_accum == false && ql_first(&ctx->cnts_ql) == NULL &&
1066 while ((ctx.p = ql_first(&ctx_ql)) != NULL) {
1087 while ((ctx.p = ql_first(&ctx_ql)) != NULL)
H A Darena.c1039 for (mapelm = ql_first(mapelms); mapelm != NULL;
1040 mapelm = ql_first(mapelms)) {

Completed in 194 milliseconds