Searched refs:secondByte (Results 1 – 11 of 11) sorted by relevance
213 int secondByte = it.nextByte(det); in nextChar() local214 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() local278 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 …]
212 int secondByte = it.nextByte(det); in nextChar() local213 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() local277 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 …]
257 int32_t secondByte = it->nextByte(det); in nextChar() local258 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() local311 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 …]
303 int secondByte = 0; in nextChar() local319 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()
303 int secondByte = 0; in nextChar() local319 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()
155 Byte secondByte = (Byte)(((saltSizeSpec) << 4) | ivSizeSpec); in WriteCoderProperties() local156 RINOK(outStream->Write(&secondByte, 1, NULL)); in WriteCoderProperties()195 Byte secondByte = data[pos++]; in SetDecoderProperties2() local197 _key.SaltSize += (secondByte >> 4); in SetDecoderProperties2()198 ivSize += (secondByte & 0x0F); in SetDecoderProperties2()
32 int32_t secondByte,
395 int32_t secondByte, in ParseTwoBytes() argument397 int32_t fullBitValue = (firstByte << 8) + secondByte - 1; in ParseTwoBytes()
261 int32_t secondByte = bits->ReadBits(8, e); in ParseECIValue() local263 return ((firstByte & 0x3f) << 8) | secondByte; in ParseECIValue()
569 secondByte = (curByte >> numBitsCut) & ((1<<8-numBitsCut)-1)570 ordDataList[secondByteLoc] |= secondByte
444 secondByte = charCode & 0x00FF461 subHeader.firstCode = secondByte469 codeDiff = secondByte - (subHeader.firstCode + subHeader.entryCount)