Lines Matching refs:multi_heap_handle_t
31 void *multi_heap_malloc(multi_heap_handle_t heap, size_t size)
34 void *multi_heap_aligned_alloc(multi_heap_handle_t heap, size_t size, size_t alignment)
37 void multi_heap_aligned_free(multi_heap_handle_t heap, void *p)
40 void multi_heap_free(multi_heap_handle_t heap, void *p)
43 void *multi_heap_realloc(multi_heap_handle_t heap, void *p, size_t size)
46 size_t multi_heap_get_allocated_size(multi_heap_handle_t heap, void *p)
49 multi_heap_handle_t multi_heap_register(void *start, size_t size)
52 void multi_heap_get_info(multi_heap_handle_t heap, multi_heap_info_t *info)
55 size_t multi_heap_free_size(multi_heap_handle_t heap)
58 size_t multi_heap_minimum_free_size(multi_heap_handle_t heap)
124 size_t multi_heap_get_allocated_size_impl(multi_heap_handle_t heap, void *p) in multi_heap_get_allocated_size_impl()
129 multi_heap_handle_t multi_heap_register_impl(void *start_ptr, size_t size) in multi_heap_register_impl()
155 void multi_heap_set_lock(multi_heap_handle_t heap, void *lock) in multi_heap_set_lock()
160 void multi_heap_internal_lock(multi_heap_handle_t heap) in multi_heap_internal_lock()
165 void multi_heap_internal_unlock(multi_heap_handle_t heap) in multi_heap_internal_unlock()
170 multi_heap_block_handle_t multi_heap_get_first_block(multi_heap_handle_t heap) in multi_heap_get_first_block()
179 multi_heap_block_handle_t multi_heap_get_next_block(multi_heap_handle_t heap, multi_heap_block_hand… in multi_heap_get_next_block()
199 void *multi_heap_malloc_impl(multi_heap_handle_t heap, size_t size) in multi_heap_malloc_impl()
220 void multi_heap_free_impl(multi_heap_handle_t heap, void *p) in multi_heap_free_impl()
235 void *multi_heap_realloc_impl(multi_heap_handle_t heap, void *p, size_t size) in multi_heap_realloc_impl()
267 void *multi_heap_aligned_alloc_impl_offs(multi_heap_handle_t heap, size_t size, size_t alignment, s… in multi_heap_aligned_alloc_impl_offs()
297 void *multi_heap_aligned_alloc_impl(multi_heap_handle_t heap, size_t size, size_t alignment) in multi_heap_aligned_alloc_impl()
329 bool multi_heap_check(multi_heap_handle_t heap, bool print_errors) in multi_heap_check()
363 void multi_heap_dump(multi_heap_handle_t heap) in multi_heap_dump()
373 size_t multi_heap_free_size_impl(multi_heap_handle_t heap) in multi_heap_free_size_impl()
382 size_t multi_heap_minimum_free_size_impl(multi_heap_handle_t heap) in multi_heap_minimum_free_size_impl()
408 void multi_heap_get_info_impl(multi_heap_handle_t heap, multi_heap_info_t *info) in multi_heap_get_info_impl()