Home
last modified time | relevance | path

Searched refs:UTF8_COUNT_TRAIL_BYTES (Results 1 – 4 of 4) sorted by relevance

/external/icu4c/common/
Dutf_impl.c110 uint8_t count=UTF8_COUNT_TRAIL_BYTES(c); in utf8_nextCharSafeBody()
268 uint8_t shouldCount=UTF8_COUNT_TRAIL_BYTES(b); in utf8_prevCharSafeBody()
354 if(UTF8_COUNT_TRAIL_BYTES(b)>=(i-I)) { in utf8_back1SafeBody()
Dustrtrns.c271 uint8_t count=UTF8_COUNT_TRAIL_BYTES(c); in utf8_nextCharSafeBodyTerminated()
339 uint8_t count=UTF8_COUNT_TRAIL_BYTES(c); in utf8_nextCharSafeBodyPointer()
/external/icu4c/test/intltest/
Dstrtest.cpp142 if(UTF8_COUNT_TRAIL_BYTES(0x7F) != 0 in Test_UTF8_COUNT_TRAIL_BYTES()
143 || UTF8_COUNT_TRAIL_BYTES(0xC0) != 1 in Test_UTF8_COUNT_TRAIL_BYTES()
144 || UTF8_COUNT_TRAIL_BYTES(0xE0) != 2 in Test_UTF8_COUNT_TRAIL_BYTES()
145 || UTF8_COUNT_TRAIL_BYTES(0xF0) != 3) in Test_UTF8_COUNT_TRAIL_BYTES()
/external/icu4c/common/unicode/
Dutf_old.h276 #define UTF8_COUNT_TRAIL_BYTES(leadByte) (utf8_countTrailBytes[(uint8_t)leadByte]) macro
353 uint8_t __count=UTF8_COUNT_TRAIL_BYTES(c); \
391 (i)+=1+UTF8_COUNT_TRAIL_BYTES((s)[i]); \