Home
last modified time | relevance | path

Searched refs:byte2 (Results 1 – 2 of 2) sorted by relevance

/art/tools/
Dstream-trace-converter.py33 byte2 = f.read(1)
34 if not byte2:
36 return ord(byte1) + (ord(byte2) << 8);
47 byte2 = f.read(1)
48 if not byte2:
56 return ord(byte1) + (ord(byte2) << 8) + (ord(byte3) << 16) + (ord(byte4) << 24);
/art/runtime/
Ddex_file_verifier.cc884 uint8_t byte2 = *(ptr_++); in CheckIntraStringDataItem() local
885 if (UNLIKELY((byte2 & 0xc0) != 0x80)) { in CheckIntraStringDataItem()
886 ErrorStringPrintf("Illegal continuation byte %x in string data", byte2); in CheckIntraStringDataItem()
889 uint16_t value = ((byte & 0x1f) << 6) | (byte2 & 0x3f); in CheckIntraStringDataItem()
898 uint8_t byte2 = *(ptr_++); in CheckIntraStringDataItem() local
899 if (UNLIKELY((byte2 & 0xc0) != 0x80)) { in CheckIntraStringDataItem()
900 ErrorStringPrintf("Illegal continuation byte %x in string data", byte2); in CheckIntraStringDataItem()
908 uint16_t value = ((byte & 0x0f) << 12) | ((byte2 & 0x3f) << 6) | (byte3 & 0x3f); in CheckIntraStringDataItem()