Home
last modified time | relevance | path

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

/glibc-2.36/malloc/
Dtst-malloc-too-large.c72 void * ptr_to_realloc; in test_large_allocations() local
87 ptr_to_realloc = malloc (16); in test_large_allocations()
88 TEST_VERIFY_EXIT (ptr_to_realloc != NULL); in test_large_allocations()
93 TEST_VERIFY (realloc (ptr_to_realloc, size) == NULL); in test_large_allocations()
103 free (ptr_to_realloc); in test_large_allocations()
119 ptr_to_realloc = malloc (16); in test_large_allocations()
120 TEST_VERIFY_EXIT (ptr_to_realloc != NULL); in test_large_allocations()
122 TEST_VERIFY (reallocarray (ptr_to_realloc, nmemb, size / nmemb) == NULL); in test_large_allocations()
129 free (ptr_to_realloc); in test_large_allocations()
134 ptr_to_realloc = malloc (16); in test_large_allocations()
[all …]