Lines Matching refs:sizes

84     independent_comalloc(size_t n_elements, size_t sizes[], void* chunks[]);
129 represent chunk sizes. `Possibly signed' is due to the fact
141 Requests for sizes outside the allowed range will perform an optional
171 Changing default word sizes:
837 strings -- the default handles structs/objects/arrays with sizes up
1508 works very well in practice. Most bins hold sizes that are
1509 unusual as malloc request sizes, but are more usual for fragments
1555 Bins for sizes < 512 bytes contain chunks of all the same size, spaced
2257 display chunk addresses, sizes, bins, and other instrumentation.
2905 two to make sizes and alignments work out.
3728 /* Unroll clear of <= 36 bytes (72 if 8byte sizes). We know that
3798 size. Also, checked_request2size returns false for request sizes
4391 here for all block sizes. */
5732 fprintf (fp, "<heap nr=\"%d\">\n<sizes>\n", n++);
5744 } sizes[NFASTBINS + NBINS - 1];
5745 #define nsizes (sizeof (sizes) / sizeof (sizes[0]))
5774 sizes[i].from = thissize - (MALLOC_ALIGNMENT - 1);
5775 sizes[i].to = thissize;
5776 sizes[i].count = nthissize;
5779 sizes[i].from = sizes[i].to = sizes[i].count = 0;
5781 sizes[i].total = sizes[i].count * sizes[i].to;
5792 sizes[NFASTBINS - 1 + i].from = ~((size_t) 0);
5793 sizes[NFASTBINS - 1 + i].to = sizes[NFASTBINS - 1 + i].total
5794 = sizes[NFASTBINS - 1 + i].count = 0;
5800 ++sizes[NFASTBINS - 1 + i].count;
5801 sizes[NFASTBINS - 1 + i].total += r_size;
5802 sizes[NFASTBINS - 1 + i].from
5803 = MIN (sizes[NFASTBINS - 1 + i].from, r_size);
5804 sizes[NFASTBINS - 1 + i].to = MAX (sizes[NFASTBINS - 1 + i].to,
5810 if (sizes[NFASTBINS - 1 + i].count == 0)
5811 sizes[NFASTBINS - 1 + i].from = 0;
5812 nblocks += sizes[NFASTBINS - 1 + i].count;
5813 avail += sizes[NFASTBINS - 1 + i].total;
5842 if (sizes[i].count != 0 && i != NFASTBINS)
5845 sizes[i].from, sizes[i].to, sizes[i].total, sizes[i].count);
5847 if (sizes[NFASTBINS].count != 0)
5850 sizes[NFASTBINS].from, sizes[NFASTBINS].to,
5851 sizes[NFASTBINS].total, sizes[NFASTBINS].count);
5857 "</sizes>\n<total type=\"fast\" count=\"%zu\" size=\"%zu\"/>\n"