Lines Matching defs:maxbuf
4101 kmem_cache_t **alloc_table, size_t maxbuf, uint_t shift)
4113 /* if the table has an entry for maxbuf, we're done */
4114 if (size > maxbuf)
4139 ASSERT(size > maxbuf); /* i.e. maxbuf <= max(cache_size) */
4146 size_t maxbuf;
4191 maxbuf = kmem_max_cached;
4192 if (maxbuf <= KMEM_MAXBUF) {
4193 maxbuf = 0;
4200 * Round maxbuf up to an existing cache size. If maxbuf
4206 if (maxbuf <= size)
4209 kmem_max_cached = maxbuf = size;
4223 maxbuf = KMEM_BIG_MAXBUF_32BIT;
4235 kmem_big_alloc_table, maxbuf, KMEM_BIG_SHIFT);
4237 kmem_big_alloc_table_max = maxbuf >> KMEM_BIG_SHIFT;