Searched refs:NBINS (Results 1 - 10 of 10) sorted by relevance

/external/jemalloc/android/src/
H A Dje_mallinfo.c38 for (unsigned j = 0; j < NBINS; j++) {
/external/jemalloc/src/
H A Dtcache.c38 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;
[all...]
H A Darena.c8 arena_bin_info_t arena_bin_info[NBINS];
11 const uint32_t small_bin2size_tab[NBINS] = {
1708 assert(binind < NBINS);
1865 assert(binind < NBINS);
2383 for (i = 0; i < NBINS; i++) {
2445 for (i = 0; i < NBINS; i++) {
2644 for (i = 0; i < NBINS; i++)
2653 for (i = 0; i < NBINS; i++)
2663 for (i = 0; i < NBINS; i++)
H A Dctl.c458 memset(astats->bstats, 0, NBINS * sizeof(malloc_bin_stats_t));
472 for (i = 0; i < NBINS; i++) {
515 for (i = 0; i < NBINS; i++) {
1497 CTL_RO_NL_GEN(arenas_nbins, NBINS, unsigned)
1506 if (i > NBINS)
1673 if (j > NBINS)
/external/jemalloc/include/jemalloc/internal/
H A Dtcache.h54 ((TCACHE_GC_SWEEP / NBINS) + ((TCACHE_GC_SWEEP / NBINS == 0) ? 0 : 1))
107 * Number of tcache bins. There are NBINS small-object bins, plus 0 or more
279 assert(binind < NBINS);
323 binind = NBINS + (size >> LG_PAGE) - 1;
399 binind = NBINS + (size >> LG_PAGE) - 1;
H A Dctl.h47 malloc_bin_stats_t bstats[NBINS];
H A Dsize_classes.sh201 * 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)
H A Darena.h380 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);
H A Dsize_classes.h21 * NBINS: Number of small size class bins.
174 #define NBINS 31 macro
325 #define NBINS 35 macro
476 #define NBINS 47 macro
624 #define NBINS 28 macro
772 #define NBINS 32 macro
920 #define NBINS 44 macro
1066 #define NBINS 27 macro
1212 #define NBINS 31 macro
1358 #define NBINS 4 macro
1669 #define NBINS macro
1980 #define NBINS macro
2291 #define NBINS macro
2599 #define NBINS macro
2907 #define NBINS macro
3215 #define NBINS macro
3521 #define NBINS macro
3827 #define NBINS macro
4133 #define NBINS macro
[all...]
/external/jemalloc/test/unit/
H A Dmallctl.c310 TEST_ARENAS_CONSTANT(unsigned, nbins, NBINS);

Completed in 158 milliseconds