Lines Matching defs:count
193 /* name = "test_memory_poison_%(start)_%(offset)_%(count)_%(direction)"
195 * encompassing count bytes. Access the region at offset from the start.
196 * %(start), %(offset) and %(count) are decimal integers.
201 size_t start = 0, offset = 0, count = 0;
208 &start, &offset, &count, &direction) != 4) {
226 if (start + count > sizeof(aligned.buf)) {
228 "%s: start+count=%" MBEDTLS_PRINTF_SIZET
230 __func__, start + count, sizeof(aligned.buf));
233 if (offset >= count) {
236 " >= count=%" MBEDTLS_PRINTF_SIZET,
237 __func__, offset, count);
241 MBEDTLS_TEST_MEMORY_POISON(aligned.buf + start, count);