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/libdexfile/dex/
Ddex_file_verifier.cc1684 uint8_t byte2 = *(ptr_++); in CheckIntraStringDataItem() local
1685 if (UNLIKELY((byte2 & 0xc0) != 0x80)) { in CheckIntraStringDataItem()
1686 ErrorStringPrintf("Illegal continuation byte %x in string data", byte2); in CheckIntraStringDataItem()
1689 uint16_t value = ((byte & 0x1f) << 6) | (byte2 & 0x3f); in CheckIntraStringDataItem()
1698 uint8_t byte2 = *(ptr_++); in CheckIntraStringDataItem() local
1699 if (UNLIKELY((byte2 & 0xc0) != 0x80)) { in CheckIntraStringDataItem()
1700 ErrorStringPrintf("Illegal continuation byte %x in string data", byte2); in CheckIntraStringDataItem()
1708 uint16_t value = ((byte & 0x0f) << 12) | ((byte2 & 0x3f) << 6) | (byte3 & 0x3f); in CheckIntraStringDataItem()