Lines Matching refs:size_t
28 unchanged_array_size (struct scratch_buffer *buf, size_t a, size_t b) in unchanged_array_size()
30 size_t old_length = buf->length; in unchanged_array_size()
47 array_size_must_fail (size_t a, size_t b) in array_size_must_fail()
88 size_t old_length = buf.length; in do_test()
103 size_t old_length = buf.length; in do_test()
136 && unchanged_array_size (&buf, (size_t) (1ULL << 32), 0) in do_test()
137 && unchanged_array_size (&buf, 0, (size_t) (1ULL << 32)))) in do_test()
150 && array_size_must_fail (((size_t)-1) / 4, 4) in do_test()
151 && array_size_must_fail (4, ((size_t)-1) / 4))) in do_test()
159 size_t sizes[] = { 16, buf.length, buf.length + 16 }; in do_test()
163 size_t l = sizes[i] > buf.length ? sizes[i] : buf.length; in do_test()