Lines Matching defs:read
33 /* If we always read/write as a consistent type to each address, this shouldn't
2072 * 1. We can read a 4-byte value from any address without crashing
7037 /* How many bytes can be safely read from d->ptr without reading past end-of-buf
7108 * skip more bytes than are available, we return a long read count to the caller
7111 * won't actually be read.
7451 size_t read = peekbytes(d, &data, bytes);
7452 if (read == bytes && data == expected) {
7454 int32_t ok = getbytes(d, &data, read);
7457 } else if (read < bytes && memcmp(&data, &expected, read) == 0) {