Home
last modified time | relevance | path

Searched refs:malloc_cache (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/lib/libc/stdlib/
H A Dmalloc.c224 static size_t malloc_cache = 16; variable
492 case '>': malloc_cache <<= 1; break; in malloc_init()
493 case '<': malloc_cache >>= 1; break; in malloc_init()
547 if (!malloc_cache) in malloc_init()
548 malloc_cache++; in malloc_init()
550 malloc_cache <<= malloc_pageshift; in malloc_init()
1011 pf->size > malloc_cache && /* ..and the cache is full, */ in free_pages()
1019 pf->end = (char *)pf->page + malloc_cache; in free_pages()
1020 pf->size = malloc_cache; in free_pages()