Searched refs:U8_COUNT_TRAIL_BYTES (Results 1 – 8 of 8) sorted by relevance
157 if (U8_COUNT_TRAIL_BYTES(0x7F) != 0 in Test_UTF8_COUNT_TRAIL_BYTES()158 || U8_COUNT_TRAIL_BYTES(0xC2) != 1 in Test_UTF8_COUNT_TRAIL_BYTES()159 || U8_COUNT_TRAIL_BYTES(0xE0) != 2 in Test_UTF8_COUNT_TRAIL_BYTES()160 || U8_COUNT_TRAIL_BYTES(0xF0) != 3) { in Test_UTF8_COUNT_TRAIL_BYTES()
263 int32_t trail = U8_COUNT_TRAIL_BYTES(linestr[pos]); in fixAt()
55 #define U8_COUNT_TRAIL_BYTES(leadByte) \ macro
295 trailBytes = U8_COUNT_TRAIL_BYTES(*(current + byteIndex)); in str_write_java()
581 uint16_t countTrailBytes = U8_COUNT_TRAIL_BYTES(myByte); in ucnv_getNextUChar_UTF8()
1654 …if (!U8_IS_LEAD(str[lastOffset]) || U8_COUNT_TRAIL_BYTES(str[lastOffset]) + lastOffset < (int32_t)…1659 U8_MASK_LEAD_BYTE(leadByte, U8_COUNT_TRAIL_BYTES(leadByte));
2504 int32_t count=U8_COUNT_TRAIL_BYTES(s[0]); in isOneTruncatedUTF8()