Lines Matching defs:tcache_max
22 static size_t tcache_max;
89 /* No change is expected if usize is outside of tcache_max range. */
90 bool cached = (usize <= tcache_max);
128 sz = sizeof(tcache_max);
129 assert_d_eq(mallctl("arenas.tcache_max", (void *)&tcache_max,
132 /* opt.tcache_max set to 1024 in tcache_max.sh */
133 expect_zu_eq(tcache_max, 1024, "tcache_max not expected");
136 test_tcache_bytes_alloc(tcache_max - 1);
137 test_tcache_bytes_alloc(tcache_max);
138 test_tcache_bytes_alloc(tcache_max + 1);