Searched refs:UTF8_COUNT_TRAIL_BYTES (Results 1 – 4 of 4) sorted by relevance
110 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()
271 uint8_t count=UTF8_COUNT_TRAIL_BYTES(c); in utf8_nextCharSafeBodyTerminated()339 uint8_t count=UTF8_COUNT_TRAIL_BYTES(c); in utf8_nextCharSafeBodyPointer()
142 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()
276 #define UTF8_COUNT_TRAIL_BYTES(leadByte) (utf8_countTrailBytes[(uint8_t)leadByte]) macro353 uint8_t __count=UTF8_COUNT_TRAIL_BYTES(c); \391 (i)+=1+UTF8_COUNT_TRAIL_BYTES((s)[i]); \