Searched defs:leadByte (Results 1 - 2 of 2) sorted by relevance

/external/chromium/third_party/icu/source/common/
H A Ducnvhz.c252 uint32_t leadByte = args->converter->toUnicodeStatus & 0xff; local
264 leadIsOk = (uint8_t)(leadByte - 0x21) <= (0x7d - 0x21);
267 tempBuf[0] = (char) (leadByte+0x80) ;
271 mySourceChar= (leadByte << 8) | mySourceChar;
275 mySourceChar = (int32_t)leadByte;
279 mySourceChar= 0x10000 | (leadByte << 8) | mySourceChar;
/external/icu4c/common/
H A Ducnvhz.c252 uint32_t leadByte = args->converter->toUnicodeStatus & 0xff; local
264 leadIsOk = (uint8_t)(leadByte - 0x21) <= (0x7d - 0x21);
267 tempBuf[0] = (char) (leadByte+0x80) ;
271 mySourceChar= (leadByte << 8) | mySourceChar;
275 mySourceChar = (int32_t)leadByte;
279 mySourceChar= 0x10000 | (leadByte << 8) | mySourceChar;

Completed in 12 milliseconds