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

  /external/jemalloc/android/src/
je_mallinfo.c 38 for (unsigned j = 0; j < NBINS; j++) {
  /external/jemalloc/src/
tcache.c 38 if (binind < NBINS) {
89 assert(binind < NBINS);
193 arena->stats.lstats[binind - NBINS].nrequests +=
228 arena->stats.lstats[binind - NBINS].nrequests +=
363 for (i = 0; i < NBINS; i++) {
384 arena->stats.lstats[i - NBINS].nrequests +=
451 for (i = 0; i < NBINS; i++) {
461 malloc_large_stats_t *lstats = &arena->stats.lstats[i - NBINS];
485 nhbins = NBINS + (tcache_maxclass >> LG_PAGE);
493 for (i = 0; i < NBINS; i++)
    [all...]
arena.c 8 arena_bin_info_t arena_bin_info[NBINS];
11 const uint32_t small_bin2size_tab[NBINS] = {
    [all...]
ctl.c 303 {NAME("nbins"), CTL(arenas_nbins)},
458 memset(astats->bstats, 0, NBINS * sizeof(malloc_bin_stats_t));
472 for (i = 0; i < NBINS; i++) {
515 for (i = 0; i < NBINS; i++) {
    [all...]
  /external/jemalloc/include/jemalloc/internal/
tcache.h 42 ((TCACHE_GC_SWEEP / NBINS) + ((TCACHE_GC_SWEEP / NBINS == 0) ? 0 : 1))
95 * Number of tcache bins. There are NBINS small-object bins, plus 0 or more
267 assert(binind < NBINS);
311 binind = NBINS + (size >> LG_PAGE) - 1;
387 binind = NBINS + (size >> LG_PAGE) - 1;
ctl.h 47 malloc_bin_stats_t bstats[NBINS];
size_classes.sh 101 nbins=0
114 nbins=$((${index} + 1))
159 nbins=$((${index} + 1))
174 # - nbins
201 * NBINS: Number of small size class bins.
222 echo "#define NBINS ${nbins}"
241 * cannot support more than 256 small size classes. Further constrain NBINS to
245 #if (NBINS > 255)
arena.h 380 arena_bin_t bins[NBINS];
399 extern uint32_t const small_bin2size_tab[NBINS];
401 extern arena_bin_info_t arena_bin_info[NBINS];
600 assert(binind < NBINS);
730 assert(binind < NBINS || binind == BININD_INVALID);
919 assert(binind < NBINS);
947 assert(binind < NBINS);
    [all...]
size_classes.h 21 * NBINS: Number of small size class bins.
174 #define NBINS 31
325 #define NBINS 35
476 #define NBINS 47
624 #define NBINS 28
    [all...]
  /external/jemalloc/test/unit/
mallctl.c 191 unsigned nbins, i; local
195 len = sizeof(nbins);
196 assert_d_eq(mallctl("arenas.nbins", &nbins, &len, NULL, 0), 0,
202 for (i = 0; i < nbins; i++) {
310 TEST_ARENAS_CONSTANT(unsigned, nbins, NBINS);
  /external/chromium_org/v8/test/mjsunit/
unicode-test.js     [all...]

Completed in 2842 milliseconds