Lines Matching defs:mempool
283 slab_alloc_st(struct slab_mempool *mempool)
285 return slab_alloc(&mempool->child);
292 slab_free_st(struct slab_mempool *mempool, void *ptr)
294 slab_free(&mempool->child, ptr);
298 slab_destroy(struct slab_mempool *mempool)
300 slab_destroy_child(&mempool->child);
301 slab_destroy_parent(&mempool->parent);
311 slab_create(struct slab_mempool *mempool,
315 slab_create_parent(&mempool->parent, item_size, num_items);
316 slab_create_child(&mempool->child, &mempool->parent);