Home
last modified time | relevance | path

Searched refs:pool (Results 1 – 2 of 2) sorted by relevance

/tf-a-ffa_el3_spmc/include/lib/
A Dobject_pool.h57 static inline void *pool_alloc_n(struct object_pool *pool, size_t count) in pool_alloc_n() argument
59 if ((pool->used + count) > pool->capacity) { in pool_alloc_n()
61 count, pool->capacity - pool->used); in pool_alloc_n()
65 void *obj = (char *)(pool->objects) + (pool->obj_size * pool->used); in pool_alloc_n()
66 pool->used += count; in pool_alloc_n()
74 static inline void *pool_alloc(struct object_pool *pool) in pool_alloc() argument
76 return pool_alloc_n(pool, 1U); in pool_alloc()
/tf-a-ffa_el3_spmc/docs/components/
A Dxlat-tables-lib-v2-design.rst197 does not fit within this pre-allocated pool of memory.

Completed in 3 milliseconds