Lines Matching refs:malloc_data_t
49 } malloc_data_t; typedef
68 malloc_data_t *ret; in umem_malloc()
69 size = size_arg + sizeof (malloc_data_t); in umem_malloc()
73 size += sizeof (malloc_data_t); in umem_malloc()
81 ret = (malloc_data_t *)_umem_alloc(size, UMEM_DEFAULT); in umem_malloc()
155 malloc_data_t *ret; in memalign()
172 overhead = 2 * sizeof (malloc_data_t); in memalign()
174 overhead = sizeof (malloc_data_t); in memalign()
204 ret = (malloc_data_t *)buf; in memalign()
251 malloc_data_t *buf; in process_free()
260 buf = (malloc_data_t *)buf_arg; in process_free()
269 data_size = size - sizeof (malloc_data_t); in process_free()
279 data_size = size - 2 * sizeof (malloc_data_t); in process_free()
301 data_size = size - 2 * sizeof (malloc_data_t); in process_free()
313 size_t overhead = sizeof (malloc_data_t); in process_free()
318 overhead += sizeof (malloc_data_t); in process_free()