| 2152 | } |
| 2153 | |
| 2154 | static bool malloc_mem_realloc(struct malloc_pool_s *pool, uint32_t base, |
| 2155 | uint32_t size) |
| 2156 | { |
| 2157 | uint32_t hi = base + size; |
| 2158 | return malloc_mem_grow(pool, hi); |
| 2159 | } |
| 2160 | |
| 2161 | static void *malloc_impl(struct malloc_pool_s *pool, size_t size, bool lock) |
| 2162 | { |
no test coverage detected