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

  /external/jemalloc/src/
quarantine.c 35 quarantine->curobjs = 0;
73 ret->curobjs = quarantine->curobjs;
74 if (quarantine->first + quarantine->curobjs <= (ZU(1) <<
78 quarantine->curobjs * sizeof(quarantine_obj_t));
83 size_t ncopy_b = quarantine->curobjs - ncopy_a;
103 quarantine->curobjs--;
112 while (quarantine->curbytes > upper_bound && quarantine->curobjs > 0)
139 if (quarantine->curobjs == (ZU(1) << quarantine->lg_maxobjs))
142 assert(quarantine->curobjs < (ZU(1) << quarantine->lg_maxobjs))
    [all...]
prof.c 233 tctx->cnts.curobjs++;
248 assert(tctx->cnts.curobjs > 0);
250 tctx->cnts.curobjs--;
619 if (tctx->cnts.curobjs != 0)
648 assert(tctx->cnts.curobjs == 0);
1058 tdata->cnt_summed.curobjs += tctx->dump_cnts.curobjs;
1079 gctx->cnt_summed.curobjs += tctx->dump_cnts.curobjs;
1131 "%"FMTu64"]\n", tctx->thr_uid, tctx->dump_cnts.curobjs,
1504 uint64_t curobjs = (uint64_t)round(((double)cnt_all->curobjs) * local
    [all...]
  /external/jemalloc/include/jemalloc/internal/
quarantine.h 21 size_t curobjs; member in struct:quarantine_s
prof.h 75 uint64_t curobjs; member in struct:prof_cnt_s
  /external/jemalloc_new/src/
prof.c 246 tctx->cnts.curobjs++;
259 assert(tctx->cnts.curobjs > 0);
261 tctx->cnts.curobjs--;
620 if (tctx->cnts.curobjs != 0) {
651 assert(tctx->cnts.curobjs == 0);
1071 tdata->cnt_summed.curobjs += tctx->dump_cnts.curobjs;
1090 gctx->cnt_summed.curobjs += tctx->dump_cnts.curobjs;
1140 "%"FMTu64"]\n", tctx->thr_uid, tctx->dump_cnts.curobjs,
1512 uint64_t curobjs = (uint64_t)round(((double)cnt_all->curobjs) * local
    [all...]
  /external/jemalloc_new/include/jemalloc/internal/
prof_structs.h 34 uint64_t curobjs; member in struct:prof_cnt_s
prof_externs.h 62 void prof_cnt_all(uint64_t *curobjs, uint64_t *curbytes, uint64_t *accumobjs,
  /external/jemalloc/test/unit/
prof_reset.c 129 assert_u64_eq(cnt_all_copy.curobjs, 1, "Expected 1 allocation");
135 assert_u64_eq(cnt_all_copy.curobjs, 0, "Expected 0 allocations");
  /external/jemalloc_new/test/unit/
prof_reset.c 115 assert_u64_eq(cnt_all_copy.curobjs, 1, "Expected 1 allocation");
121 assert_u64_eq(cnt_all_copy.curobjs, 0, "Expected 0 allocations");

Completed in 6451 milliseconds