Home
last modified time | relevance | path

Searched refs:heap_size (Results 1 – 25 of 27) sorted by relevance

12

/trusted-firmware-a-3.4.0/drivers/auth/mbedtls/
Dmbedtls_common.c32 size_t heap_size = 0; in mbedtls_init() local
39 err = plat_get_mbedtls_heap(&heap_addr, &heap_size); in mbedtls_init()
46 assert(heap_size >= TF_MBEDTLS_HEAP_SIZE); in mbedtls_init()
49 mbedtls_memory_buffer_alloc_init(heap_addr, heap_size); in mbedtls_init()
62 int get_mbedtls_heap_helper(void **heap_addr, size_t *heap_size) in get_mbedtls_heap_helper() argument
67 assert(heap_size != NULL); in get_mbedtls_heap_helper()
70 *heap_size = sizeof(heap); in get_mbedtls_heap_helper()
/trusted-firmware-a-3.4.0/plat/arm/board/morello/
Dmorello_plat.c53 int plat_get_mbedtls_heap(void **heap_addr, size_t *heap_size) in plat_get_mbedtls_heap() argument
56 assert(heap_size != NULL); in plat_get_mbedtls_heap()
58 return arm_get_mbedtls_heap(heap_addr, heap_size); in plat_get_mbedtls_heap()
/trusted-firmware-a-3.4.0/plat/arm/board/n1sdp/
Dn1sdp_plat.c56 int plat_get_mbedtls_heap(void **heap_addr, size_t *heap_size) in plat_get_mbedtls_heap() argument
59 assert(heap_size != NULL); in plat_get_mbedtls_heap()
61 return arm_get_mbedtls_heap(heap_addr, heap_size); in plat_get_mbedtls_heap()
/trusted-firmware-a-3.4.0/plat/arm/board/corstone1000/common/
Dcorstone1000_plat.c119 int plat_get_mbedtls_heap(void **heap_addr, size_t *heap_size) in plat_get_mbedtls_heap() argument
122 assert(heap_size != NULL); in plat_get_mbedtls_heap()
124 return arm_get_mbedtls_heap(heap_addr, heap_size); in plat_get_mbedtls_heap()
/trusted-firmware-a-3.4.0/plat/imx/imx8m/imx8mm/
Dimx8mm_trusted_boot.c33 int plat_get_mbedtls_heap(void **heap_addr, size_t *heap_size) in plat_get_mbedtls_heap() argument
35 return get_mbedtls_heap_helper(heap_addr, heap_size); in plat_get_mbedtls_heap()
/trusted-firmware-a-3.4.0/plat/imx/imx8m/imx8mp/
Dimx8mp_trusted_boot.c33 int plat_get_mbedtls_heap(void **heap_addr, size_t *heap_size) in plat_get_mbedtls_heap() argument
35 return get_mbedtls_heap_helper(heap_addr, heap_size); in plat_get_mbedtls_heap()
/trusted-firmware-a-3.4.0/plat/hisilicon/hikey/
Dhikey_tbbr.c33 int plat_get_mbedtls_heap(void **heap_addr, size_t *heap_size) in plat_get_mbedtls_heap() argument
35 return get_mbedtls_heap_helper(heap_addr, heap_size); in plat_get_mbedtls_heap()
/trusted-firmware-a-3.4.0/plat/imx/imx7/common/
Dimx7_trusted_boot.c33 int plat_get_mbedtls_heap(void **heap_addr, size_t *heap_size) in plat_get_mbedtls_heap() argument
35 return get_mbedtls_heap_helper(heap_addr, heap_size); in plat_get_mbedtls_heap()
/trusted-firmware-a-3.4.0/plat/hisilicon/hikey960/
Dhikey960_tbbr.c33 int plat_get_mbedtls_heap(void **heap_addr, size_t *heap_size) in plat_get_mbedtls_heap() argument
35 return get_mbedtls_heap_helper(heap_addr, heap_size); in plat_get_mbedtls_heap()
/trusted-firmware-a-3.4.0/plat/socionext/synquacer/
Dsq_tbbr.c37 int plat_get_mbedtls_heap(void **heap_addr, size_t *heap_size) in plat_get_mbedtls_heap() argument
39 return get_mbedtls_heap_helper(heap_addr, heap_size); in plat_get_mbedtls_heap()
/trusted-firmware-a-3.4.0/plat/socionext/uniphier/
Duniphier_tbbr.c37 int plat_get_mbedtls_heap(void **heap_addr, size_t *heap_size) in plat_get_mbedtls_heap() argument
39 return get_mbedtls_heap_helper(heap_addr, heap_size); in plat_get_mbedtls_heap()
/trusted-firmware-a-3.4.0/plat/rpi/common/
Drpi3_trusted_boot.c33 int plat_get_mbedtls_heap(void **heap_addr, size_t *heap_size) in plat_get_mbedtls_heap() argument
35 return get_mbedtls_heap_helper(heap_addr, heap_size); in plat_get_mbedtls_heap()
/trusted-firmware-a-3.4.0/plat/arm/board/juno/
Djuno_security.c159 int plat_get_mbedtls_heap(void **heap_addr, size_t *heap_size) in plat_get_mbedtls_heap() argument
162 assert(heap_size != NULL); in plat_get_mbedtls_heap()
164 return arm_get_mbedtls_heap(heap_addr, heap_size); in plat_get_mbedtls_heap()
/trusted-firmware-a-3.4.0/plat/arm/common/
Darm_dyn_cfg.c43 int arm_get_mbedtls_heap(void **heap_addr, size_t *heap_size) in arm_get_mbedtls_heap() argument
46 assert(heap_size != NULL); in arm_get_mbedtls_heap()
54 *heap_size = sizeof(heap); in arm_get_mbedtls_heap()
62 *heap_size = FCONF_GET_PROPERTY(tbbr, dyn_config, mbedtls_heap_size); in arm_get_mbedtls_heap()
Darm_dyn_cfg_helpers.c81 int arm_set_dtb_mbedtls_heap_info(void *dtb, void *heap_addr, size_t heap_size) in arm_set_dtb_mbedtls_heap_info() argument
112 DTB_PROP_MBEDTLS_HEAP_SIZE, 1, &heap_size); in arm_set_dtb_mbedtls_heap_info()
/trusted-firmware-a-3.4.0/plat/arm/board/tc/
Dtc_plat.c139 int plat_get_mbedtls_heap(void **heap_addr, size_t *heap_size) in plat_get_mbedtls_heap() argument
142 assert(heap_size != NULL); in plat_get_mbedtls_heap()
144 return arm_get_mbedtls_heap(heap_addr, heap_size); in plat_get_mbedtls_heap()
/trusted-firmware-a-3.4.0/plat/arm/css/sgi/
Dsgi_plat_v2.c158 int plat_get_mbedtls_heap(void **heap_addr, size_t *heap_size) in plat_get_mbedtls_heap() argument
161 assert(heap_size != NULL); in plat_get_mbedtls_heap()
163 return arm_get_mbedtls_heap(heap_addr, heap_size); in plat_get_mbedtls_heap()
Dsgi_plat.c159 int plat_get_mbedtls_heap(void **heap_addr, size_t *heap_size) in plat_get_mbedtls_heap() argument
162 assert(heap_size != NULL); in plat_get_mbedtls_heap()
164 return arm_get_mbedtls_heap(heap_addr, heap_size); in plat_get_mbedtls_heap()
/trusted-firmware-a-3.4.0/plat/nxp/common/tbbr/
Dx509_tbbr.c102 int plat_get_mbedtls_heap(void **heap_addr, size_t *heap_size) in plat_get_mbedtls_heap() argument
104 return get_mbedtls_heap_helper(heap_addr, heap_size); in plat_get_mbedtls_heap()
/trusted-firmware-a-3.4.0/include/plat/arm/common/
Darm_dyn_cfg_helpers.h15 size_t heap_size);
/trusted-firmware-a-3.4.0/plat/arm/board/fvp_r/
Dfvp_r_common.c243 int plat_get_mbedtls_heap(void **heap_addr, size_t *heap_size) in plat_get_mbedtls_heap() argument
246 assert(heap_size != NULL); in plat_get_mbedtls_heap()
248 return arm_get_mbedtls_heap(heap_addr, heap_size); in plat_get_mbedtls_heap()
/trusted-firmware-a-3.4.0/plat/qemu/common/
Dqemu_common.c165 int plat_get_mbedtls_heap(void **heap_addr, size_t *heap_size) in DEFINE_CONFIGURE_MMU_EL()
167 return get_mbedtls_heap_helper(heap_addr, heap_size); in DEFINE_CONFIGURE_MMU_EL()
/trusted-firmware-a-3.4.0/plat/arm/board/fvp/
Dfvp_common.c454 int plat_get_mbedtls_heap(void **heap_addr, size_t *heap_size) in plat_get_mbedtls_heap() argument
457 assert(heap_size != NULL); in plat_get_mbedtls_heap()
459 return arm_get_mbedtls_heap(heap_addr, heap_size); in plat_get_mbedtls_heap()
/trusted-firmware-a-3.4.0/include/plat/common/
Dplatform.h70 int plat_get_mbedtls_heap(void **heap_addr, size_t *heap_size);
339 int get_mbedtls_heap_helper(void **heap_addr, size_t *heap_size);
/trusted-firmware-a-3.4.0/plat/brcm/board/common/
Dboard_arm_trusted_boot.c622 int plat_get_mbedtls_heap(void **heap_addr, size_t *heap_size) in plat_get_mbedtls_heap() argument
624 return get_mbedtls_heap_helper(heap_addr, heap_size); in plat_get_mbedtls_heap()

12