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

  /external/jemalloc_new/include/jemalloc/internal/
tcache_externs.h 15 extern unsigned nhbins;
jemalloc_internal_inlines_a.h 117 assert(binind >= NBINS &&binind < nhbins);
arena_inlines_b.h 227 if (szind < nhbins) {
339 if (szind < nhbins) {
tcache_inlines.h 112 assert(binind >= NBINS &&binind < nhbins);
private_namespace.h 333 #define nhbins JEMALLOC_N(nhbins) macro
private_namespace_jet.h 340 #define nhbins JEMALLOC_N(nhbins) macro
  /external/jemalloc/src/
tcache.c 13 unsigned nhbins; variable
72 if (tcache->next_gc_bin == nhbins)
182 assert(binind < nhbins);
327 size = offsetof(tcache_t, tbins) + (sizeof(tcache_bin_t) * nhbins);
345 for (i = 0; i < nhbins; i++) {
381 for (; i < nhbins; i++) {
441 for (; i < nhbins; i++) {
570 nhbins = size2index(tcache_maxclass) + 1;
573 tcache_bin_info = (tcache_bin_info_t *)base_alloc(tsdn, nhbins *
592 for (; i < nhbins; i++)
    [all...]
ctl.c 363 {NAME("nhbins"), CTL(arenas_nhbins)},
    [all...]
  /external/jemalloc_new/src/
tcache.c 22 unsigned nhbins; variable
86 if (tcache->next_gc_bin == nhbins) {
203 assert(binind < nhbins);
381 memset(tcache->bins_large, 0, sizeof(cache_bin_t) * (nhbins - NBINS));
394 for (; i < nhbins; i++) {
485 for (unsigned i = NBINS; i < nhbins; i++) {
563 for (; i < nhbins; i++) {
686 nhbins = sz_size2index(tcache_maxclass) + 1;
689 tcache_bin_info = (cache_bin_info_t *)base_alloc(tsdn, b0get(), nhbins
710 for (; i < nhbins; i++)
    [all...]
stats.c 1011 unsigned nhbins; local
1012 CTL_GET("arenas.nhbins", &nhbins, unsigned);
1013 emitter_kv(emitter, "nhbins", "Number of thread-cache bin size classes",
1014 emitter_type_unsigned, &nhbins);
    [all...]
arena.c 164 for (; i < nhbins; i++) {
    [all...]
ctl.c 373 {NAME("nhbins"), CTL(arenas_nhbins)},
    [all...]
  /external/jemalloc/include/jemalloc/internal/
tcache.h 130 extern unsigned nhbins;
361 assert(binind < nhbins);
private_namespace.h 351 #define nhbins JEMALLOC_N(nhbins) macro
    [all...]
private_unnamespace.h 351 #undef nhbins macro

Completed in 232 milliseconds