Lines Matching defs:byte
43 // Helper function to read one byte from the stream.
45 uint8_t byte = 0;
46 return stream->ReadAllBlocking(&byte, sizeof(byte), nullptr) ? byte : -1;
49 // Helper function to write one byte from the stream.
50 inline bool WriteByte(Stream* stream, uint8_t byte) {
51 return stream->WriteAllBlocking(&byte, sizeof(byte), nullptr);
97 // Since our data buffer contained values from 0 to 255, the byte at position