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

/freebsd-10.0-release/contrib/ofed/management/opensm/opensm/
H A Dst.c65 * bins
67 * DEFAULT_INIT_TABLE_SIZE is the default for the number of bins
206 tbl->bins = (st_table_entry **) Calloc(size, sizeof(st_table_entry *));
246 ptr = table->bins[i];
253 free(table->bins);
268 ptr = (table)->bins[bin_pos];\
313 entry->next = table->bins[bin_pos];\
314 table->bins[bin_pos] = entry;\
362 ptr = table->bins[i];
371 free(table->bins);
[all...]
/freebsd-10.0-release/tools/regression/filemon/
H A DMakefile17 bins: ${BINS}
18 all: bins
/freebsd-10.0-release/sys/dev/random/
H A Dyarrow.c66 u_int bins; /* Pt/t */ member in struct:random_state
80 RANDOM_CHECK_UINT(bins, 2, 16);
185 "bins", CTLTYPE_INT|CTLFLAG_RW,
186 &random_state.bins, 10,
212 random_state.bins = 10;
271 if (random_state.bins > TIMEBIN)
272 random_state.bins = TIMEBIN;
273 for (i = 1; i < random_state.bins; i++) {
291 for (i = 1; i < random_state.bins; i++)
/freebsd-10.0-release/contrib/tcsh/
H A Dsh.hist.c542 unsigned bins[155]; local
543 memset(bins, 0, sizeof(bins));
548 if (hits >= sizeof(bins)/sizeof(bins[0])) /* clip */
549 hits = highest = sizeof(bins)/sizeof(bins[0]) - 1;
552 bins[hits]++;
558 bins[i], bins[
[all...]
/freebsd-10.0-release/contrib/ofed/management/opensm/include/opensm/
H A Dst.h68 struct st_table_entry **bins; member in struct:st_table
/freebsd-10.0-release/contrib/jemalloc/src/
H A Dstats.c52 void *cbopaque, unsigned i, bool bins, bool large);
69 "bins: bin size regs pgs allocated nmalloc"
74 "bins: bin size regs pgs allocated nmalloc"
81 CTL_IJ_GET("stats.arenas.0.bins.0.nruns", &nruns, uint64_t);
108 CTL_IJ_GET("stats.arenas.0.bins.0.allocated",
110 CTL_IJ_GET("stats.arenas.0.bins.0.nmalloc",
112 CTL_IJ_GET("stats.arenas.0.bins.0.ndalloc",
115 CTL_IJ_GET("stats.arenas.0.bins.0.nrequests",
117 CTL_IJ_GET("stats.arenas.0.bins.0.nfills",
119 CTL_IJ_GET("stats.arenas.0.bins
205 stats_arena_print(void (*write_cb)(void *, const char *), void *cbopaque, unsigned i, bool bins, bool large) argument
278 bool bins = true; local
[all...]
H A Dtcache.c97 arena_bin_t *bin = &arena->bins[binind];
147 arena_bin_t *bin = &tcache->arena->bins[binind];
329 arena_bin_t *bin = &arena->bins[i];
409 arena_bin_t *bin = &arena->bins[i];
H A Darena.c1343 bin = &arena->bins[binind];
1430 bin = &arena->bins[binind];
2068 arena_bin_t *bin = &arena->bins[i];
2126 /* Initialize bins. */
2128 bin = &arena->bins[i];
2344 malloc_mutex_prefork(&arena->bins[i].lock);
2353 malloc_mutex_postfork_parent(&arena->bins[i].lock);
2363 malloc_mutex_postfork_child(&arena->bins[i].lock);
/freebsd-10.0-release/contrib/jemalloc/include/jemalloc/internal/
H A Darena.h206 * Read-only information associated with each element of arena_t's bins array
380 /* bins is used to store trees of free regions. */
381 arena_bin_t bins[NBINS]; member in struct:arena_s
740 actual_binind = bin - arena->bins;
756 size_t binind = bin - arena->bins;
/freebsd-10.0-release/sys/contrib/octeon-sdk/cvmx-malloc/
H A Dmalloc.c1235 M_MXFAST is the maximum request size used for "fastbins", special bins
1896 linked. The bins are approximately proportionally (log) spaced.
1897 There are a lot of these bins (128). This may look excessive, but
1898 works very well in practice. Most bins hold sizes that are
1900 and consolidated sets of chunks, which is what these bins hold, so
1906 Chunks in bins are kept in size order, with ties going to the
1908 for the small bins, which all contain the same-sized chunks, but
1924 only the fd/bk pointers of bins, and then use repositioning tricks
1931 #define bin_at(m, i) ((mbinptr)((char*)&((m)->bins[(i)<<1]) - (SIZE_SZ<<1)))
1936 /* Reminders about list directionality within bins */
2188 mchunkptr bins[NBINS * 2]; member in struct:malloc_state
[all...]

Completed in 129 milliseconds