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

/freebsd-10.1-release/contrib/jemalloc/include/jemalloc/internal/
H A Dsize_classes.h42 #define SMALL_MAXCLASS 3584 macro
86 #define SMALL_MAXCLASS 7168 macro
134 #define SMALL_MAXCLASS 14336 macro
186 #define SMALL_MAXCLASS 28672 macro
242 #define SMALL_MAXCLASS 57344 macro
279 #define SMALL_MAXCLASS 3584 macro
320 #define SMALL_MAXCLASS 7168 macro
365 #define SMALL_MAXCLASS 14336 macro
414 #define SMALL_MAXCLASS 28672 macro
467 #define SMALL_MAXCLASS 5734 macro
503 #define SMALL_MAXCLASS macro
543 #define SMALL_MAXCLASS macro
587 #define SMALL_MAXCLASS macro
635 #define SMALL_MAXCLASS macro
687 #define SMALL_MAXCLASS macro
[all...]
H A Dtcache.h393 assert(tcache_salloc(ptr) <= SMALL_MAXCLASS);
419 assert(tcache_salloc(ptr) > SMALL_MAXCLASS);
H A Djemalloc_internal.h623 if (size <= SMALL_MAXCLASS)
666 if (usize <= SMALL_MAXCLASS)
887 if (usize <= SMALL_MAXCLASS) {
H A Darena.h914 if (size <= SMALL_MAXCLASS) {
/freebsd-10.1-release/contrib/jemalloc/src/
H A Djemalloc.c883 SMALL_MAXCLASS) {
884 ret = imalloc(SMALL_MAXCLASS+1);
967 (uintptr_t)1U && usize <= SMALL_MAXCLASS) {
968 assert(sa2u(SMALL_MAXCLASS+1,
970 result = ipalloc(sa2u(SMALL_MAXCLASS+1,
1075 <= SMALL_MAXCLASS) {
1076 ret = icalloc(SMALL_MAXCLASS+1);
1171 usize <= SMALL_MAXCLASS) {
1172 ret = iralloc(ptr, SMALL_MAXCLASS+1, 0, 0,
1215 SMALL_MAXCLASS) {
[all...]
H A Dtcache.c290 if (size <= SMALL_MAXCLASS)
355 if (tcache_size <= SMALL_MAXCLASS) {
435 if (opt_lg_tcache_max < 0 || (1U << opt_lg_tcache_max) < SMALL_MAXCLASS)
436 tcache_maxclass = SMALL_MAXCLASS;
H A Darena.c1580 assert(size <= SMALL_MAXCLASS);
1935 if (oldsize <= SMALL_MAXCLASS) {
1938 if ((size + extra <= SMALL_MAXCLASS &&
1950 if (size + extra > SMALL_MAXCLASS) {

Completed in 115 milliseconds