Lines Matching refs:twelve
34 struct twelve struct
38 _Static_assert (sizeof (struct twelve) == 12, "struct twelve"); argument
39 _Static_assert (__alignof__ (struct twelve) == 4, "struct twelve");
77 || !IS_ALIGNED (alloc_buffer_next (&buf, void), struct twelve); in test_empty_array()
78 struct twelve *ptr = alloc_buffer_alloc_array (&buf, struct twelve, 0); in test_empty_array()
79 TEST_VERIFY (IS_ALIGNED (ptr, struct twelve)); in test_empty_array()
124 TEST_VERIFY (alloc_buffer_alloc_array (&buf, struct twelve, count) in test_impossible_array()
157 TEST_VERIFY (alloc_buffer_alloc (&buf, struct twelve) == NULL); in test_after_failure()
181 TEST_VERIFY (alloc_buffer_alloc_array (&buf, struct twelve, count) in test_after_failure()
215 TEST_VERIFY (alloc_buffer_alloc (&buf, struct twelve) == NULL); in test_empty()
230 TEST_VERIFY (alloc_buffer_alloc_array (&buf, struct twelve, 1) == NULL); in test_empty()
283 TEST_VERIFY (alloc_buffer_alloc (&buf, struct twelve) == NULL); in test_size_1()
298 TEST_VERIFY (alloc_buffer_alloc_array (&buf, struct twelve, 1) == NULL); in test_size_1()
407 struct twelve *ptr = alloc_buffer_alloc (&buf, struct twelve); in test_misaligned()
409 TEST_VERIFY (IS_ALIGNED (ptr, struct twelve)); in test_misaligned()