Home
last modified time | relevance | path

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

/mbedtls-latest/tests/configs/
Duser-config-malloc-0-null.h12 static inline void *custom_calloc(size_t nmemb, size_t size) in custom_calloc() argument
14 if (nmemb == 0 || size == 0) { in custom_calloc()
17 return calloc(nmemb, size); in custom_calloc()
/mbedtls-latest/library/
Dplatform.c47 void *mbedtls_calloc(size_t nmemb, size_t size) in mbedtls_calloc() argument
49 return (*mbedtls_calloc_func)(nmemb, size); in mbedtls_calloc()