| 225 | */ |
| 226 | |
| 227 | static void * |
| 228 | a0ialloc(size_t size, bool zero, bool is_internal) { |
| 229 | if (unlikely(malloc_init_a0())) { |
| 230 | return NULL; |
| 231 | } |
| 232 | |
| 233 | return iallocztm(TSDN_NULL, size, sz_size2index(size), zero, NULL, |
| 234 | is_internal, arena_get(TSDN_NULL, 0, true), true); |
| 235 | } |
| 236 | |
| 237 | static void |
| 238 | a0idalloc(void *ptr, bool is_internal) { |
no test coverage detected