Home
last modified time | relevance | path

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

/external/icu/android_icu4j/src/main/java/android/icu/text/
DCharsetRecog_mbcs.java213 int secondByte = it.nextByte(det); in nextChar() local
214 if (secondByte < 0) { in nextChar()
217 it.charValue = (firstByte << 8) | secondByte; in nextChar()
218 … if (! ((secondByte>=0x40 && secondByte<=0x7f) || (secondByte>=0x80 && secondByte<=0xff))) { in nextChar()
277 int secondByte = it.nextByte(det); in nextChar() local
278 if (secondByte < 0) { in nextChar()
281 it.charValue = (it.charValue << 8) | secondByte; in nextChar()
283 if (secondByte < 0x40 || in nextChar()
284 secondByte ==0x7f || in nextChar()
285 secondByte == 0xff) { in nextChar()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DCharsetRecog_mbcs.java212 int secondByte = it.nextByte(det); in nextChar() local
213 if (secondByte < 0) { in nextChar()
216 it.charValue = (firstByte << 8) | secondByte; in nextChar()
217 … if (! ((secondByte>=0x40 && secondByte<=0x7f) || (secondByte>=0x80 && secondByte<=0xff))) { in nextChar()
276 int secondByte = it.nextByte(det); in nextChar() local
277 if (secondByte < 0) { in nextChar()
280 it.charValue = (it.charValue << 8) | secondByte; in nextChar()
282 if (secondByte < 0x40 || in nextChar()
283 secondByte ==0x7f || in nextChar()
284 secondByte == 0xff) { in nextChar()
[all …]
/external/icu/icu4c/source/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/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/mbcs/
DBIG5Tool.java303 int secondByte = 0; in nextChar() local
319 secondByte = it.nextByte(); in nextChar()
320 it.charValue = (it.charValue << 8) | secondByte; in nextChar()
322 if (secondByte < 0x40 || in nextChar()
323 secondByte == 0x007f || in nextChar()
324 secondByte == 0x00ff || in nextChar()
325 sjis && secondByte >= 0x00fd) { in nextChar()
330 …tem.out.println("Error " + Integer.toHexString(firstByte) + " " + Integer.toHexString(secondByte)); in nextChar()
DEUCTool.java303 int secondByte = 0; in nextChar() local
319 secondByte = it.nextByte(); in nextChar()
320 it.charValue = (it.charValue << 8) | secondByte; in nextChar()
324 if (secondByte < 0xa1) { in nextChar()
336 if (secondByte < 0xa1) { in nextChar()
354 …ystem.out.println("Error " + Integer.toHexString(firstByte) + " " + Integer.toHexString(secondByte) in nextChar()
/external/lzma/CPP/7zip/Crypto/
D7zAes.cpp155 Byte secondByte = (Byte)(((saltSizeSpec) << 4) | ivSizeSpec); in WriteCoderProperties() local
156 RINOK(outStream->Write(&secondByte, 1, NULL)); in WriteCoderProperties()
195 Byte secondByte = data[pos++]; in SetDecoderProperties2() local
197 _key.SaltSize += (secondByte >> 4); in SetDecoderProperties2()
198 ivSize += (secondByte & 0x0F); in SetDecoderProperties2()
/external/pdfium/xfa/src/fxbarcode/datamatrix/
DBC_DataMatrixDecodedBitStreamParser.h32 int32_t secondByte,
DBC_DataMatrixDecodedBitStreamParser.cpp395 int32_t secondByte, in ParseTwoBytes() argument
397 int32_t fullBitValue = (firstByte << 8) + secondByte - 1; in ParseTwoBytes()
/external/pdfium/xfa/src/fxbarcode/qrcode/
DBC_QRDecodedBitStreamParser.cpp261 int32_t secondByte = bits->ReadBits(8, e); in ParseECIValue() local
263 return ((firstByte & 0x3f) << 8) | secondByte; in ParseECIValue()
/external/fonttools/Lib/fontTools/ttLib/tables/
DE_B_D_T_.py569 secondByte = (curByte >> numBitsCut) & ((1<<8-numBitsCut)-1)
570 ordDataList[secondByteLoc] |= secondByte
D_c_m_a_p.py444 secondByte = charCode & 0x00FF
461 subHeader.firstCode = secondByte
469 codeDiff = secondByte - (subHeader.firstCode + subHeader.entryCount)