Lines Matching refs:tsd
34 huge_malloc(tsd_t *tsd, arena_t *arena, size_t size, bool zero, in huge_malloc() argument
45 return (huge_palloc(tsd, arena, usize, chunksize, zero, tcache)); in huge_malloc()
49 huge_palloc(tsd_t *tsd, arena_t *arena, size_t usize, size_t alignment, in huge_palloc() argument
59 node = ipallocztm(tsd, CACHELINE_CEILING(sizeof(extent_node_t)), in huge_palloc()
77 arena = arena_choose(tsd, arena); in huge_palloc()
82 idalloctm(tsd, node, tcache, true); in huge_palloc()
90 idalloctm(tsd, node, tcache, true); in huge_palloc()
329 huge_ralloc(tsd_t *tsd, arena_t *arena, void *ptr, size_t oldsize, size_t size, in huge_ralloc() argument
345 ret = huge_palloc(tsd, arena, size + extra, alignment, zero, in huge_ralloc()
348 ret = huge_malloc(tsd, arena, size + extra, zero, tcache); in huge_ralloc()
355 ret = huge_palloc(tsd, arena, size, alignment, zero, in huge_ralloc()
358 ret = huge_malloc(tsd, arena, size, zero, tcache); in huge_ralloc()
370 isqalloc(tsd, ptr, oldsize, tcache); in huge_ralloc()
375 huge_dalloc(tsd_t *tsd, void *ptr, tcache_t *tcache) in huge_dalloc() argument
391 idalloctm(tsd, node, tcache, true); in huge_dalloc()