Home | History | Annotate | Download | only in runtime

Lines Matching defs:byte3

876         uint8_t byte3 = *(ptr_++);
877 if (UNLIKELY((byte3 & 0xc0) != 0x80)) {
878 ErrorStringPrintf("Illegal continuation byte %x in string data", byte3);
881 uint16_t value = ((byte & 0x0f) << 12) | ((byte2 & 0x3f) << 6) | (byte3 & 0x3f);