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