Home | History | Annotate | Download | only in kern

Lines Matching defs:cache_size

469 		size_t cache_size = array[i].kc_size;
476 if (cache_size > maxsize || cache_size > PAGE_SIZE) {
484 if (cache_size < COHERENCY_UNIT) {
485 if (COHERENCY_UNIT % cache_size > 0) {
490 } else if ((cache_size & (PAGE_SIZE - 1)) == 0) {
493 if ((cache_size % COHERENCY_UNIT) > 0) {
499 if ((cache_size >> shift) > maxidx) {
500 maxidx = cache_size >> shift;
504 pc = pool_cache_init(cache_size, align, 0, flags,
507 while (size <= cache_size) {