Lines Matching refs:ptr_to_realloc
72 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()
135 TEST_VERIFY_EXIT (ptr_to_realloc != NULL); in test_large_allocations()
137 TEST_VERIFY (reallocarray (ptr_to_realloc, size / nmemb, nmemb) == NULL); in test_large_allocations()
144 free (ptr_to_realloc); in test_large_allocations()