HomeSort by relevance Sort by last modified time
    Searched refs:accumbytes (Results 1 - 3 of 3) sorted by null

  /external/jemalloc/src/
prof.c 429 assert(ctx->cnt_merged.accumbytes == 0);
461 ctx->cnt_merged.accumbytes += cnt->cnts.accumbytes;
847 ctx->cnt_summed.accumbytes += tcnt.accumbytes;
859 cnt_all->accumbytes += ctx->cnt_summed.accumbytes;
874 cnt_all->accumobjs, cnt_all->accumbytes))
881 cnt_all->accumobjs, cnt_all->accumbytes,
928 assert(ctx->cnt_summed.accumbytes == 0)
    [all...]
  /external/jemalloc/include/jemalloc/internal/
prof.h 83 uint64_t accumbytes; member in struct:prof_cnt_s
375 cnt->cnts.accumbytes += usize;
470 cnt->cnts.accumbytes += usize;
arena.h 501 bool arena_prof_accum_impl(arena_t *arena, uint64_t accumbytes);
502 bool arena_prof_accum_locked(arena_t *arena, uint64_t accumbytes);
503 bool arena_prof_accum(arena_t *arena, uint64_t accumbytes);
857 arena_prof_accum_impl(arena_t *arena, uint64_t accumbytes)
863 arena->prof_accumbytes += accumbytes;
872 arena_prof_accum_locked(arena_t *arena, uint64_t accumbytes)
879 return (arena_prof_accum_impl(arena, accumbytes));
883 arena_prof_accum(arena_t *arena, uint64_t accumbytes)
895 ret = arena_prof_accum_impl(arena, accumbytes);
    [all...]

Completed in 148 milliseconds