Home | History | Annotate | Download | only in i18n

Lines Matching defs:secondByte

257     int32_t secondByte = it->nextByte(det);
258 if (secondByte >= 0) {
259 it->charValue = (firstByte << 8) | secondByte;
263 if (! ((secondByte >= 0x40 && secondByte <= 0x7F) || (secondByte >= 0x80 && secondByte <= 0xFE))) {
294 int32_t secondByte = 0;
311 secondByte = it->nextByte(det);
312 if (secondByte >= 0) {
313 it->charValue = (it->charValue << 8) | secondByte;
319 if (secondByte < 0xA1) {
333 if (secondByte < 0xA1) {
422 int32_t secondByte = it->nextByte(det);
423 if (secondByte >= 0) {
424 it->charValue = (it->charValue << 8) | secondByte;
428 if (secondByte < 0x40 || secondByte == 0x7F || secondByte == 0xFF) {
459 int32_t secondByte = 0;
477 secondByte = it->nextByte(det);
478 if (secondByte >= 0) {
479 it->charValue = (it->charValue << 8) | secondByte;
485 if ((secondByte >= 0x40 && secondByte <= 0x7E) || (secondByte >=80 && secondByte <= 0xFE)) {
490 if (secondByte >= 0x30 && secondByte <= 0x39) {