Searched refs:SMALL_MAXCLASS (Results 1 - 8 of 8) sorted by relevance

/freebsd-11.0-release/contrib/jemalloc/include/jemalloc/internal/
H A Dtcache.h408 assert(tcache_salloc(tsd_tsdn(tsd), ptr) <= SMALL_MAXCLASS);
435 assert(tcache_salloc(tsd_tsdn(tsd), ptr) > SMALL_MAXCLASS);
H A Dsize_classes.h26 * SMALL_MAXCLASS: Maximum small size class.
177 #define SMALL_MAXCLASS ((((size_t)1) << 13) + (((size_t)3) << 11)) macro
326 #define SMALL_MAXCLASS ((((size_t)1) << 14) + (((size_t)3) << 12)) macro
475 #define SMALL_MAXCLASS ((((size_t)1) << 15) + (((size_t)3) << 13)) macro
624 #define SMALL_MAXCLASS ((((size_t)1) << 17) + (((size_t)3) << 15)) macro
770 #define SMALL_MAXCLASS ((((size_t)1) << 13) + (((size_t)3) << 11)) macro
916 #define SMALL_MAXCLASS ((((size_t)1) << 14) + (((size_t)3) << 12)) macro
1062 #define SMALL_MAXCLASS ((((size_t)1) << 15) + (((size_t)3) << 13)) macro
1208 #define SMALL_MAXCLASS ((((size_t)1) << 17) + (((size_t)3) << 15)) macro
1352 #define SMALL_MAXCLASS ((((size_ macro
1496 #define SMALL_MAXCLASS macro
1640 #define SMALL_MAXCLASS macro
1784 #define SMALL_MAXCLASS macro
2093 #define SMALL_MAXCLASS macro
2402 #define SMALL_MAXCLASS macro
2711 #define SMALL_MAXCLASS macro
3020 #define SMALL_MAXCLASS macro
3326 #define SMALL_MAXCLASS macro
3632 #define SMALL_MAXCLASS macro
3938 #define SMALL_MAXCLASS macro
4244 #define SMALL_MAXCLASS macro
4548 #define SMALL_MAXCLASS macro
4852 #define SMALL_MAXCLASS macro
5156 #define SMALL_MAXCLASS macro
5460 #define SMALL_MAXCLASS macro
[all...]
H A Darena.h1260 if (unlikely(usize > SMALL_MAXCLASS || (uintptr_t)tctx >
1289 if (unlikely(usize > SMALL_MAXCLASS || (ptr == old_ptr &&
1342 if (likely(size <= SMALL_MAXCLASS)) {
1492 if (likely(size <= SMALL_MAXCLASS)) {
H A Djemalloc_internal.h719 if (size <= SMALL_MAXCLASS && alignment < PAGE) {
1037 if (usize <= SMALL_MAXCLASS) {
/freebsd-11.0-release/contrib/jemalloc/src/
H A Dquarantine.c158 && usize <= SMALL_MAXCLASS)
H A Dtcache.c520 if (opt_lg_tcache_max < 0 || (1U << opt_lg_tcache_max) < SMALL_MAXCLASS)
521 tcache_maxclass = SMALL_MAXCLASS;
H A Darena.c98 if (qsize <= SMALL_MAXCLASS + large_pad)
119 if (size > SMALL_MAXCLASS) {
2527 assert(usize <= SMALL_MAXCLASS);
2662 if (likely(size <= SMALL_MAXCLASS))
2764 if (usize <= SMALL_MAXCLASS && (alignment < PAGE || (alignment == PAGE
2805 assert(size <= SMALL_MAXCLASS);
3241 if (oldsize <= SMALL_MAXCLASS) {
3244 if ((usize_max > SMALL_MAXCLASS ||
3249 if (usize_max <= SMALL_MAXCLASS)
3821 nlclasses = size2index(large_maxclass) - size2index(SMALL_MAXCLASS);
[all...]
H A Djemalloc.c1457 if (usize <= SMALL_MAXCLASS) {
1583 if (usize <= SMALL_MAXCLASS) {
1760 if (usize <= SMALL_MAXCLASS) {
2063 if (usize <= SMALL_MAXCLASS) {
2204 if (usize <= SMALL_MAXCLASS) {

Completed in 186 milliseconds