Home
last modified time | relevance | path

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

/trusted-firmware-m-latest/lib/ext/cryptocell-312-runtime/host/src/tests/integration_cc3x/runtime_integration_test/
Drun_integration_helper.c162 int runIt_free(RunItPtr *ptrElement) in runIt_free() argument
165 RUNIT_ASSERT(ptrElement != NULL); in runIt_free()
167 mbedtls_free(ptrElement->buf); in runIt_free()
173 int runIt_malloc(RunItPtr *ptrElement, size_t length) in runIt_malloc() argument
176 RUNIT_ASSERT(ptrElement != NULL); in runIt_malloc()
178 memset(ptrElement, 0, sizeof(*ptrElement)); in runIt_malloc()
180 ptrElement->buf = mbedtls_calloc(1, length + RUNIT_ALIGN32_SLACK + sizeof(uint32_t)); in runIt_malloc()
181 runIt_buffAlign32(ptrElement->buf, &(ptrElement->ba), length, "temp"); in runIt_malloc()
182 ptrElement->length = length; in runIt_malloc()
Drun_integration_helper.h244 int runIt_free(RunItPtr *ptrElement);
245 int runIt_malloc(RunItPtr *ptrElement, size_t length);