Home
last modified time | relevance | path

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

/art/tools/
Dstream-trace-converter.py50 byte3 = f.read(1)
51 if not byte3:
56 return ord(byte1) + (ord(byte2) << 8) + (ord(byte3) << 16) + (ord(byte4) << 24);
/art/libdexfile/dex/
Ddex_file_verifier.cc1703 uint8_t byte3 = *(ptr_++); in CheckIntraStringDataItem() local
1704 if (UNLIKELY((byte3 & 0xc0) != 0x80)) { in CheckIntraStringDataItem()
1705 ErrorStringPrintf("Illegal continuation byte %x in string data", byte3); in CheckIntraStringDataItem()
1708 uint16_t value = ((byte & 0x0f) << 12) | ((byte2 & 0x3f) << 6) | (byte3 & 0x3f); in CheckIntraStringDataItem()