Searched refs:utf8_len (Results 1 – 3 of 3) sorted by relevance
814 size_t utf8_len = 0; in decode_utf8_char() local818 utf8_len++; in decode_utf8_char()820 if (utf8_len > len || utf8_len < 2 || utf8_len > 6) in decode_utf8_char()825 ch = *p & ((1 << (7 - utf8_len)) - 1); in decode_utf8_char()826 for (i = 1; i < utf8_len; i++) in decode_utf8_char()836 if ( (ch <= 0x7F && utf8_len > 1) in decode_utf8_char()837 || (ch <= 0x7FF && utf8_len > 2) in decode_utf8_char()838 || (ch <= 0xFFFF && utf8_len > 3) in decode_utf8_char()839 || (ch <= 0x1FFFFF && utf8_len > 4) in decode_utf8_char()840 || (ch <= 0x3FFFFFF && utf8_len > 5) in decode_utf8_char()[all …]
1816 size_t utf8_len = 0; in decode_utf8_char() local1820 utf8_len++; in decode_utf8_char()1822 if (utf8_len > len || utf8_len < 2 || utf8_len > 6) in decode_utf8_char()1827 ch = *p & ((1 << (7 - utf8_len)) - 1); in decode_utf8_char()1828 for (i = 1; i < utf8_len; i++) in decode_utf8_char()1838 if ( (ch <= 0x7F && utf8_len > 1) in decode_utf8_char()1839 || (ch <= 0x7FF && utf8_len > 2) in decode_utf8_char()1840 || (ch <= 0xFFFF && utf8_len > 3) in decode_utf8_char()1841 || (ch <= 0x1FFFFF && utf8_len > 4) in decode_utf8_char()1842 || (ch <= 0x3FFFFFF && utf8_len > 5) in decode_utf8_char()[all …]
1327 int utf8_len = 0; in col_vs_pos() local1369 } else if (utf8_len < MAX_UTF_CHAR_LEN) in col_vs_pos()1371 utf8_buf[utf8_len++] = ch; in col_vs_pos()1372 if (is_utf8_well_formed(utf8_buf, utf8_len)) in col_vs_pos()1375 utf8_len = 0; in col_vs_pos()1385 utf8_len = 0; /* flush invalid UTF-8 */ in col_vs_pos()