Home | History | Annotate | Download | only in Support

Lines Matching defs:Byte

27     uint8_t Byte = Value & 0x7f;
30 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
31 ((Value == -1) && ((Byte & 0x40) != 0))));
33 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
34 OS << char(Byte);
37 // Pad with 0x80 and emit a terminating byte at the end.
52 uint8_t Byte = Value & 0x7f;
55 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
56 ((Value == -1) && ((Byte & 0x40) != 0))));
58 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
59 *p++ = Byte;
62 // Pad with 0x80 and emit a terminating byte at the end.
76 uint8_t Byte = Value & 0x7f;
79 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
80 OS << char(Byte);
83 // Pad with 0x80 and emit a null byte at the end.
97 uint8_t Byte = Value & 0x7f;
100 Byte |= 0x80; // Mark this byte to show that more bytes will follow.
101 *p++ = Byte;
104 // Pad with 0x80 and emit a null byte at the end.
153 uint8_t Byte;
162 Byte = *p++;
163 Value |= (int64_t(Byte & 0x7f) << Shift);
165 } while (Byte >= 128);
167 if (Byte & 0x40)