Home
last modified time | relevance | path

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

/external/qemu/distrib/sdl-1.2.12/src/video/x11/
DSDL_x11events.c235 Uint8 const *const end_of_input = utf8 + utf8_length - 1; in Utf8ToUtf16() local
237 while (utf8 <= end_of_input) { in Utf8ToUtf16()
252 if (end_of_input - utf8 < 1 || (((utf8[1] ^ 0x80)) & 0xC0)) { in Utf8ToUtf16()
259 if (end_of_input - utf8 < 2 || (((utf8[1] ^ 0x80) | (utf8[2] ^ 0x80)) & 0xC0)) { in Utf8ToUtf16()
267 … if (end_of_input - utf8 < 3 || (((utf8[1] ^ 0x80) | (utf8[2] ^0x80) | (utf8[3] ^ 0x80)) & 0xC0)) { in Utf8ToUtf16()