Home | History | Annotate | Download | only in dex

Lines Matching defs:byte

773         ErrorStringPrintf("Bad encoded_value byte size %x", value_arg);
1272 // try_items are 4-byte aligned. Verify the spacer is 0.
1343 uint8_t byte = *(ptr_++);
1346 switch (byte >> 4) {
1349 if (UNLIKELY(byte == 0)) {
1371 ErrorStringPrintf("Illegal start byte %x in string data", byte);
1375 // Bit pattern 110x has an additional byte.
1378 ErrorStringPrintf("Illegal continuation byte %x in string data", byte2);
1381 uint16_t value = ((byte & 0x1f) << 6) | (byte2 & 0x3f);
1392 ErrorStringPrintf("Illegal continuation byte %x in string data", byte2);
1397 ErrorStringPrintf("Illegal continuation byte %x in string data", byte3);
1400 uint16_t value = ((byte & 0x0f) << 12) | ((byte2 & 0x3f) << 6) | (byte3 & 0x3f);