Home
last modified time | relevance | path

Searched refs:secondByte (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/icu/source/i18n/
Dcsrmbcs.cpp256 int32_t secondByte = it->nextByte(det); in nextChar() local
257 if (secondByte >= 0) { in nextChar()
258 it->charValue = (firstByte << 8) | secondByte; in nextChar()
262 …if (! ((secondByte >= 0x40 && secondByte <= 0x7F) || (secondByte >= 0x80 && secondByte <= 0xFE))) { in nextChar()
292 int32_t secondByte = 0; in nextChar() local
309 secondByte = it->nextByte(det); in nextChar()
310 if (secondByte >= 0) { in nextChar()
311 it->charValue = (it->charValue << 8) | secondByte; in nextChar()
317 if (secondByte < 0xA1) { in nextChar()
331 if (secondByte < 0xA1) { in nextChar()
[all …]
/external/icu4c/i18n/
Dcsrmbcs.cpp257 int32_t secondByte = it->nextByte(det); in nextChar() local
258 if (secondByte >= 0) { in nextChar()
259 it->charValue = (firstByte << 8) | secondByte; in nextChar()
263 …if (! ((secondByte >= 0x40 && secondByte <= 0x7F) || (secondByte >= 0x80 && secondByte <= 0xFE))) { in nextChar()
294 int32_t secondByte = 0; in nextChar() local
311 secondByte = it->nextByte(det); in nextChar()
312 if (secondByte >= 0) { in nextChar()
313 it->charValue = (it->charValue << 8) | secondByte; in nextChar()
319 if (secondByte < 0xA1) { in nextChar()
333 if (secondByte < 0xA1) { in nextChar()
[all …]
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
DInstructionIterator.java58 byte secondByte = insns[insnsPosition + 1]; in IterateInstructions()
59 switch (secondByte) { in IterateInstructions()
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
DWebSocketFrame.cpp63 unsigned char secondByte = *p++; in parseFrame() local
71 bool masked = secondByte & maskBit; in parseFrame()
72 uint64_t payloadLength64 = secondByte & payloadLengthMask; in parseFrame()