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()
98 free (ptr_to_realloc); in test_large_allocations()
111 ptr_to_realloc = malloc (16); in test_large_allocations()
112 TEST_VERIFY_EXIT (ptr_to_realloc != NULL); in test_large_allocations()
114 TEST_VERIFY (reallocarray (ptr_to_realloc, nmemb, size / nmemb) == NULL); in test_large_allocations()
116 free (ptr_to_realloc); in test_large_allocations()
118 ptr_to_realloc = malloc (16); in test_large_allocations()
119 TEST_VERIFY_EXIT (ptr_to_realloc != NULL); in test_large_allocations()
121 TEST_VERIFY (reallocarray (ptr_to_realloc, size / nmemb, nmemb) == NULL); in test_large_allocations()
123 free (ptr_to_realloc); in test_large_allocations()