Searched refs:utf8_codepoint (Results 1 – 2 of 2) sorted by relevance
276 tty->tty.wr.utf8_codepoint = 0; in uv_tty_init()1699 unsigned int utf8_codepoint = handle->tty.wr.utf8_codepoint; local1731 utf8_codepoint = (unsigned int) c;1735 utf8_codepoint = (0xff >> (8 - first_zero_bit)) & c;1740 utf8_codepoint = UNICODE_REPLACEMENT_CHARACTER;1745 utf8_codepoint = UNICODE_REPLACEMENT_CHARACTER;1751 utf8_codepoint <<= 6;1752 utf8_codepoint |= ((unsigned int) c & 0x3f);1757 utf8_codepoint = UNICODE_REPLACEMENT_CHARACTER;1772 switch (utf8_codepoint) {[all …]
515 unsigned int utf8_codepoint; \