Lines Matching defs:offset
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) {
233 if (offset >= count) {
235 "%s: offset=%" MBEDTLS_PRINTF_SIZET
237 __func__, offset, count);
244 aligned.buf[start + offset] = 'b';
248 mbedtls_printf("%u\n", (unsigned) aligned.buf[start + offset]);