Lines Matching refs:byte
48 // Version 10: one-byte (Latin-1) strings
110 // Host byte order is used (N.B. this makes the format non-portable).
297 // most significant 7 bits. Each byte, except the last, has the MSB set.
527 // The existing reading code expects 16-byte strings to be aligned.
1245 // most significant 7 bits. Each byte, except the last, has the MSB set.
1269 uint8_t byte = *position_; \
1271 if (byte < 0x80) { \
1272 value |= static_cast<T>(byte) << shift; \
1276 value |= static_cast<T>(byte & 0x7F) << shift; \
1302 uint8_t byte = *position_;
1303 has_another_byte = byte & 0x80;
1305 value |= static_cast<T>(byte & 0x7F) << shift;
1721 // byte to encode, if there are fewer bytes than that we can also fail fast.