| 17 | #endif |
| 18 | |
| 19 | StackAllocator::StackAllocator(uint32_t size, void *mem) { |
| 20 | stackSize = size; |
| 21 | stack = stackSize ? (char*)(mem ? mem : das_aligned_alloc16(stackSize)) : nullptr; |
| 22 | reset(); |
| 23 | } |
| 24 | |
| 25 | |
| 26 | char * AnyHeapAllocator::impl_allocateIterator ( uint64_t size, const char * name, const LineInfo * info ) { |
nothing calls this directly
no test coverage detected