Lines Matching defs:byte3
752 uint8_t byte3 = *(ptr_++);753 if ((byte3 & 0xc0) != 0x80) {754 LOG(ERROR) << StringPrintf("Illegal continuation byte %x in string data", byte3);757 uint16_t value = ((byte & 0x0f) << 12) | ((byte2 & 0x3f) << 6) | (byte3 & 0x3f);