Home
last modified time | relevance | path

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

/arm-trusted-firmware-2.8.0/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()
/arm-trusted-firmware-2.8.0/plat/mediatek/common/
A Dmtk_smc_handlers.c96 static void print_smc_descriptor(const struct smc_descriptor pool[]) in print_smc_descriptor() argument
101 for (p_smc_desc = &pool[0]; in print_smc_descriptor()
/arm-trusted-firmware-2.8.0/fdts/
A Dfvp-ve-Cortex-A7x1.dts44 compatible = "shared-dma-pool";
A Dfvp-ve-Cortex-A5x1.dts45 compatible = "shared-dma-pool";
A Dfvp-base-psci-common.dtsi157 compatible = "shared-dma-pool";
A Dtc.dts210 compatible = "shared-dma-pool";
/arm-trusted-firmware-2.8.0/docs/components/
A Dxlat-tables-lib-v2-design.rst213 does not fit within this pre-allocated pool of memory.
/arm-trusted-firmware-2.8.0/docs/threat_model/
A Dthreat_model_spm.rst643 | | a fixed size pool for bitmap allocation. |

Completed in 10 milliseconds