HomeSort by relevance Sort by last modified time
    Searched full:ql_first (Results 1 - 5 of 5) sorted by null

  /external/jemalloc/include/jemalloc/internal/
ql.h 20 #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_head) != NULL) {
    [all...]
  /external/jemalloc/test/include/test/
mq.h 66 msg = ql_first(&mq->msgs); \
  /external/jemalloc/test/unit/
ql.c 20 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/
prof.c 425 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)
arena.c 1035 for (mapelm = ql_first(mapelms); mapelm != NULL;
1036 mapelm = ql_first(mapelms)) {
    [all...]

Completed in 220 milliseconds