Home | History | Annotate | Download | only in i18n

Lines Matching refs:secondByte

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) {
311 it->charValue = (it->charValue << 8) | secondByte;
317 if (secondByte < 0xA1) {
331 if (secondByte < 0xA1) {
416 int32_t secondByte = it->nextByte(det);
417 if (secondByte >= 0) {
418 it->charValue = (it->charValue << 8) | secondByte;
422 if (secondByte < 0x40 || secondByte == 0x7F || secondByte == 0xFF) {
451 int32_t secondByte = 0;
469 secondByte = it->nextByte(det);
470 if (secondByte >= 0) {
471 it->charValue = (it->charValue << 8) | secondByte;
477 if ((secondByte >= 0x40 && secondByte <= 0x7E) || (secondByte >=80 && secondByte <= 0xFE)) {
482 if (secondByte >= 0x30 && secondByte <= 0x39) {