| 142 | // ------------------------------------------------------ |
| 143 | |
| 144 | mi_decl_nodiscard mi_decl_restrict void* mi_heap_malloc_aligned_at(mi_heap_t* heap, size_t size, size_t alignment, size_t offset) mi_attr_noexcept { |
| 145 | return mi_heap_malloc_zero_aligned_at(heap, size, alignment, offset, false); |
| 146 | } |
| 147 | |
| 148 | mi_decl_nodiscard mi_decl_restrict void* mi_heap_malloc_aligned(mi_heap_t* heap, size_t size, size_t alignment) mi_attr_noexcept { |
| 149 | #if !MI_PADDING |
no test coverage detected