HomeSort by: relevance | last modified time | path
    Searched refs:utf8_codepoint (Results 1 - 2 of 2) sorted by relevancy

  /src/external/mit/libuv/dist/src/win/
tty.c 293 tty->tty.wr.utf8_codepoint = 0;
1716 unsigned int utf8_codepoint = handle->tty.wr.utf8_codepoint; local
1748 utf8_codepoint = (unsigned int) c;
1752 utf8_codepoint = (0xff >> (8 - first_zero_bit)) & c;
1757 utf8_codepoint = UNICODE_REPLACEMENT_CHARACTER;
1762 utf8_codepoint = UNICODE_REPLACEMENT_CHARACTER;
1768 utf8_codepoint <<= 6;
1769 utf8_codepoint |= ((unsigned int) c & 0x3f);
1774 utf8_codepoint = UNICODE_REPLACEMENT_CHARACTER
    [all...]
  /src/external/mit/libuv/dist/include/uv/
win.h 519 unsigned int utf8_codepoint; \

Completed in 29 milliseconds