| 232 | */ |
| 233 | |
| 234 | static void * |
| 235 | a0ialloc(size_t size, bool zero, bool is_internal) { |
| 236 | if (unlikely(malloc_init_a0())) { |
| 237 | return NULL; |
| 238 | } |
| 239 | |
| 240 | return iallocztm(TSDN_NULL, size, sz_size2index(size), zero, NULL, |
| 241 | is_internal, arena_get(TSDN_NULL, 0, true), true); |
| 242 | } |
| 243 | |
| 244 | static void |
| 245 | a0idalloc(void *ptr, bool is_internal) { |
no test coverage detected