Home | History | Annotate | Download | only in MC

Lines Matching defs:Byte

24     uint8_t Byte = Value & 0x7f;
27 More = !((((Value == 0 ) && ((Byte & 0x40) == 0)) ||
28 ((Value == -1) && ((Byte & 0x40) != 0))));
30 Byte |= 0x80; // Mark this byte that that more bytes will follow.
31 OS << char(Byte);
38 uint8_t Byte = Value & 0x7f;
41 Byte |= 0x80; // Mark this byte that that more bytes will follow.
42 OS << char(Byte);