Searched refs:U8_COUNT_TRAIL_BYTES (Results 1 – 16 of 16) sorted by relevance
222 if (U8_COUNT_TRAIL_BYTES(0x7F) != 0 in Test_UTF8_COUNT_TRAIL_BYTES()223 || U8_COUNT_TRAIL_BYTES(0xC2) != 1 in Test_UTF8_COUNT_TRAIL_BYTES()224 || U8_COUNT_TRAIL_BYTES(0xE0) != 2 in Test_UTF8_COUNT_TRAIL_BYTES()225 || U8_COUNT_TRAIL_BYTES(0xF0) != 3) { in Test_UTF8_COUNT_TRAIL_BYTES()
263 int32_t trail = U8_COUNT_TRAIL_BYTES(linestr[pos]); in fixAt()
58 #define U8_COUNT_TRAIL_BYTES(leadByte) \ macro
56 #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()
1667 …if (!U8_IS_LEAD(str[lastOffset]) || U8_COUNT_TRAIL_BYTES(str[lastOffset]) + lastOffset < (int32_t)…1672 U8_MASK_LEAD_BYTE(leadByte, U8_COUNT_TRAIL_BYTES(leadByte));
2652 int32_t count=U8_COUNT_TRAIL_BYTES(s[0]); in isOneTruncatedUTF8()