Lines Matching refs:count
99 size_t count = counts[i]; in test_impossible_array() local
101 printf ("info: %s: count=%zu\n", __func__, count); in test_impossible_array()
104 TEST_VERIFY (alloc_buffer_alloc_bytes (&buf, count) == NULL); in test_impossible_array()
109 TEST_VERIFY (alloc_buffer_alloc_array (&buf, char, count) == NULL); in test_impossible_array()
114 TEST_VERIFY (alloc_buffer_alloc_array (&buf, short, count) == NULL); in test_impossible_array()
119 TEST_VERIFY (alloc_buffer_alloc_array (&buf, double, count) == NULL); in test_impossible_array()
124 TEST_VERIFY (alloc_buffer_alloc_array (&buf, struct twelve, count) in test_impossible_array()
162 for (int count = 0; count <= 4; ++count) in test_after_failure() local
166 TEST_VERIFY (alloc_buffer_alloc_bytes (&buf, count) == NULL); in test_after_failure()
171 TEST_VERIFY (alloc_buffer_alloc_array (&buf, char, count) == NULL); in test_after_failure()
176 TEST_VERIFY (alloc_buffer_alloc_array (&buf, double, count) == NULL); in test_after_failure()
181 TEST_VERIFY (alloc_buffer_alloc_array (&buf, struct twelve, count) in test_after_failure()
456 for (int count = 0; count < 3; ++count) in test_large_misaligned() local
459 TEST_VERIFY (alloc_buffer_alloc_array (&buf, struct align256, count) in test_large_misaligned()