HomeSort by relevance Sort by last modified time
    Searched refs:secondByte (Results 1 - 2 of 2) sorted by null

  /external/icu4c/i18n/
csrmbcs.cpp 256 int32_t secondByte = it->nextByte(det);
257 if (secondByte >= 0) {
258 it->charValue = (firstByte << 8) | secondByte;
262 if (! ((secondByte >= 0x40 && secondByte <= 0x7F) || (secondByte >= 0x80 && secondByte <= 0xFE))) {
292 int32_t secondByte = 0;
309 secondByte = it->nextByte(det);
310 if (secondByte >= 0)
    [all...]
  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/asn1/
BerInputStream.java 524 byte secondByte = (byte) (buffer[offset - length + 1] & 0x80);
526 if (firstByte == 0 && secondByte == 0 || firstByte == (byte) 0xFF
527 && secondByte == (byte) 0x80) {

Completed in 735 milliseconds