Home | History | Annotate | Download | only in libdex

Lines Matching refs:byte2

1914                 u1 byte2 = *(data++);
1915 if ((byte2 & 0xc0) != 0x80) {
1916 LOGE("Illegal continuation byte 0x%x\n", byte2);
1924 u2 value = ((byte1 & 0x0f) << 12) | ((byte2 & 0x3f) << 6)
1935 u1 byte2 = *(data++);
1936 if ((byte2 & 0xc0) != 0x80) {
1937 LOGE("Illegal continuation byte 0x%x\n", byte2);
1940 u2 value = ((byte1 & 0x1f) << 6) | (byte2 & 0x3f);