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

  /external/jemalloc/src/
android_je_mallinfo.c 33 for (unsigned j = 0; j < NBINS; j++) {
53 return NBINS;
69 for (unsigned j = 0; j < NBINS; j++) {
87 if (aidx < narenas_auto && bidx < NBINS) {
tcache.c 43 if (binind < NBINS) {
96 assert(binind < NBINS);
202 arena->stats.lstats[binind - NBINS].nrequests +=
239 arena->stats.lstats[binind - NBINS].nrequests +=
362 for (i = 0; i < NBINS; i++) {
381 arena->stats.lstats[i - NBINS].nrequests +=
424 for (i = 0; i < NBINS; i++) {
434 malloc_large_stats_t *lstats = &arena->stats.lstats[i - NBINS];
526 for (i = 0; i < NBINS; i++) {
arena.c 18 arena_bin_info_t arena_bin_info[NBINS];
801 szind_t index = size2index(usize) - nlclasses - NBINS;
814 szind_t index = size2index(usize) - nlclasses - NBINS;
827 szind_t index = size2index(usize) - nlclasses - NBINS;
840 szind_t index = size2index(usize) - nlclasses - NBINS;
    [all...]
ctl.c 358 {NAME("nbins"), CTL(arenas_nbins)},
548 memset(astats->bstats, 0, NBINS * sizeof(malloc_bin_stats_t));
567 for (i = 0; i < NBINS; i++) {
617 for (i = 0; i < NBINS; i++) {
    [all...]
  /external/jemalloc/include/jemalloc/internal/
ctl.h 52 malloc_bin_stats_t bstats[NBINS];
size_classes.sh 103 nbins=0
116 nbins=$((${index} + 1))
161 nbins=$((${index} + 1))
184 # - nbins
215 * NBINS: Number of small size class bins.
239 echo "#define NBINS ${nbins}"
261 * cannot support more than 256 small size classes. Further constrain NBINS to
265 #if (NBINS > 255)
tcache.h 60 ((TCACHE_GC_SWEEP / NBINS) + ((TCACHE_GC_SWEEP / NBINS == 0) ? 0 : 1))
127 * Number of tcache bins. There are NBINS small-object bins, plus 0 or more
302 assert(binind < NBINS);
size_classes.h 22 * NBINS: Number of small size class bins.
173 #define NBINS 39
319 #define NBINS 36
463 #define NBINS 35
    [all...]
arena.h 462 arena_bin_t bins[NBINS];
494 extern arena_bin_info_t arena_bin_info[NBINS];
807 assert(binind < NBINS || binind == BININD_INVALID);
    [all...]
  /external/jemalloc/test/unit/
mallctl.c 195 unsigned nbins, i; local
199 len = sizeof(nbins);
200 assert_d_eq(mallctl("arenas.nbins", &nbins, &len, NULL, 0), 0,
206 for (i = 0; i < nbins; i++) {
601 TEST_ARENAS_CONSTANT(unsigned, nbins, NBINS);
  /external/v8/test/mjsunit/
unicode-test.js     [all...]

Completed in 108 milliseconds