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

/vbox/src/libs/xpcom18a4/nsprpub/lib/msgc/src/
H A Dprmsgc.c225 static GCFreeChunk *bins[NUM_BINS]; variable
541 cp->next = bins[bin];
542 bins[bin] = cp;
629 cp->next = bins[bin];
630 bins[bin] = cp;
1008 cp = bins[bin];
1019 bins[bin] = 0;
1140 ** into GCFreeChunk's which are added to the freelist bins.
1247 cp->next = bins[bin];
1248 bins[bi
[all...]
/vbox/src/libs/xpcom18a4/xpcom/build/
H A Dmalloc.c697 MXFAST is the maximum request size used for "fastbins", special bins
1884 linked. The bins are approximately proportionally (log) spaced.
1885 There are a lot of these bins (128). This may look excessive, but
1886 works very well in practice. Most bins hold sizes that are
1888 and consolidated sets of chunks, which is what these bins hold, so
1894 Chunks in bins are kept in size order, with ties going to the
1896 for the small bins, which all contain the same-sized chunks, but
1910 only the fd/bk pointers of bins, and then use repositioning tricks
1921 #define bin_at(m, i) ((mbinptr)((char*)&((m)->bins[(i)<<1]) - (SIZE_SZ<<1)))
1929 /* Reminders about list directionality within bins */
2134 mchunkptr bins[NBINS * 2]; member in struct:malloc_state
[all...]

Completed in 61 milliseconds