Searched refs:ptrElement (Results 1 – 2 of 2) sorted by relevance
162 int runIt_free(RunItPtr *ptrElement) in runIt_free() argument165 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() argument176 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()
244 int runIt_free(RunItPtr *ptrElement);245 int runIt_malloc(RunItPtr *ptrElement, size_t length);