Home
last modified time | relevance | path

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

/openthread-latest/third_party/mbedtls/repo/programs/test/
Dselftest.c58 void *empty1 = mbedtls_calloc(0, 1); in calloc_self_test() local
67 if (empty1 == NULL && empty2 == NULL) { in calloc_self_test()
71 } else if (empty1 == NULL || empty2 == NULL) { in calloc_self_test()
76 } else if (empty1 == empty2) { in calloc_self_test()
87 mbedtls_free(empty1); in calloc_self_test()
90 empty1 = mbedtls_calloc(1, 0); in calloc_self_test()
92 if (empty1 == NULL && empty2 == NULL) { in calloc_self_test()
96 } else if (empty1 == NULL || empty2 == NULL) { in calloc_self_test()
101 } else if (empty1 == empty2) { in calloc_self_test()
167 mbedtls_free(empty1); in calloc_self_test()