Home
last modified time | relevance | path

Searched refs:myByte (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/icu/source/common/
Ducnv_u8.c616 uint8_t myByte; in ucnv_getNextUChar_UTF8() local
631 myByte = (uint8_t)*(source++); in ucnv_getNextUChar_UTF8()
632 if (myByte < 0x80) in ucnv_getNextUChar_UTF8()
635 return (UChar32)myByte; in ucnv_getNextUChar_UTF8()
638 extraBytesToWrite = (uint16_t)bytesFromUTF8[myByte]; in ucnv_getNextUChar_UTF8()
640 cnv->toUBytes[0] = myByte; in ucnv_getNextUChar_UTF8()
651 cnv->toUBytes[0] = myByte; in ucnv_getNextUChar_UTF8()
655 if(U8_IS_TRAIL(myByte = *source)) { in ucnv_getNextUChar_UTF8()
656 cnv->toUBytes[i++] = myByte; in ucnv_getNextUChar_UTF8()
670 ch = myByte << 6; in ucnv_getNextUChar_UTF8()
[all …]
/external/icu/icu4c/source/common/
Ducnv_u8.c607 uint8_t myByte; in ucnv_getNextUChar_UTF8() local
622 myByte = (uint8_t)*(source++); in ucnv_getNextUChar_UTF8()
623 if (myByte < 0x80) in ucnv_getNextUChar_UTF8()
626 return (UChar32)myByte; in ucnv_getNextUChar_UTF8()
629 extraBytesToWrite = (uint16_t)bytesFromUTF8[myByte]; in ucnv_getNextUChar_UTF8()
631 cnv->toUBytes[0] = myByte; in ucnv_getNextUChar_UTF8()
642 cnv->toUBytes[0] = myByte; in ucnv_getNextUChar_UTF8()
646 if(U8_IS_TRAIL(myByte = *source)) { in ucnv_getNextUChar_UTF8()
647 cnv->toUBytes[i++] = myByte; in ucnv_getNextUChar_UTF8()
661 ch = myByte << 6; in ucnv_getNextUChar_UTF8()
[all …]