Home
last modified time | relevance | path

Searched refs:utf8_codepoint (Results 1 – 2 of 2) sorted by relevance

/third_party/libuv/src/win/
Dtty.c276 tty->tty.wr.utf8_codepoint = 0; in uv_tty_init()
1699 unsigned int utf8_codepoint = handle->tty.wr.utf8_codepoint; local
1731 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 …]
/third_party/libuv/include/uv/
Dwin.h515 unsigned int utf8_codepoint; \