Lines Matching defs:tcache

739 		 * individual threads do not lock when recording tcache stats
747 tcache_t *tcache;
756 ql_foreach(tcache, &arena->tcache_ql, link) {
757 tcache_stats_merge(tsdn, tcache, arena);
1190 CONF_HANDLE_BOOL(opt_tcache, "tcache",
1192 if (CONF_MATCH("tcache")) {
1197 "tcache cannot be enabled "
1796 ifree(tsd_t *tsd, void *ptr, tcache_t *tcache, bool slow_path)
1815 iqalloc(tsd, ptr, tcache, false);
1819 iqalloc(tsd, ptr, tcache, true);
1825 isfree(tsd_t *tsd, void *ptr, size_t usize, tcache_t *tcache, bool slow_path)
1840 isqalloc(tsd, ptr, usize, tcache, slow_path);
2004 size_t *alignment, bool *zero, tcache_t **tcache, arena_t **arena)
2019 *tcache = NULL;
2021 *tcache = tcaches_get(tsd, MALLOCX_TCACHE_GET(flags));
2023 *tcache = tcache_get(tsd, true);
2036 tcache_t *tcache, arena_t *arena, bool slow_path)
2041 return (ipalloct(tsdn, usize, alignment, zero, tcache, arena));
2044 return (iallocztm(tsdn, usize, ind, zero, tcache, false, arena,
2050 tcache_t *tcache, arena_t *arena, bool slow_path)
2058 tcache, arena, slow_path);
2063 p = imallocx_flags(tsdn, usize, alignment, zero, tcache, arena,
2076 tcache_t *tcache;
2081 &zero, &tcache, &arena)))
2086 tcache, arena, slow_path);
2089 tcache, arena, slow_path);
2109 tcache_t *tcache;
2113 &zero, &tcache, &arena)))
2115 p = imallocx_flags(tsd_tsdn(tsd), *usize, alignment, zero, tcache,
2188 size_t usize, size_t alignment, bool zero, tcache_t *tcache, arena_t *arena,
2197 zero, tcache, arena);
2203 tcache, arena);
2211 size_t alignment, size_t *usize, bool zero, tcache_t *tcache,
2223 alignment, zero, tcache, arena, tctx);
2226 tcache, arena);
2263 tcache_t *tcache;
2282 tcache = NULL;
2284 tcache = tcaches_get(tsd, MALLOCX_TCACHE_GET(flags));
2286 tcache = tcache_get(tsd, true);
2297 zero, tcache, arena);
2302 tcache, arena);
2492 tcache_t *tcache;
2501 tcache = NULL;
2503 tcache = tcaches_get(tsd, MALLOCX_TCACHE_GET(flags));
2505 tcache = tcache_get(tsd, false);
2509 ifree(tsd, ptr, tcache, false);
2511 ifree(tsd, ptr, tcache, true);
2534 tcache_t *tcache;
2546 tcache = NULL;
2548 tcache = tcaches_get(tsd, MALLOCX_TCACHE_GET(flags));
2550 tcache = tcache_get(tsd, false);
2554 isfree(tsd, ptr, usize, tcache, false);
2556 isfree(tsd, ptr, usize, tcache, true);