Lines Matching defs:mempool
286 slab_alloc_st(struct slab_mempool *mempool)
288 return slab_alloc(&mempool->child);
295 slab_free_st(struct slab_mempool *mempool, void *ptr)
297 slab_free(&mempool->child, ptr);
301 slab_destroy(struct slab_mempool *mempool)
303 slab_destroy_child(&mempool->child);
304 slab_destroy_parent(&mempool->parent);
314 slab_create(struct slab_mempool *mempool,
318 slab_create_parent(&mempool->parent, item_size, num_items);
319 slab_create_child(&mempool->child, &mempool->parent);