Searched refs:codepoint (Results 1 – 1 of 1) sorted by relevance
778 if (codepoint <= 0x7F) { in codepoint_to_utf8()779 utf8[0] = codepoint; in codepoint_to_utf8()784 if (codepoint <= 0x7FF) { in codepoint_to_utf8()791 if (codepoint <= 0xFFFF) { in codepoint_to_utf8()799 if (codepoint <= 0x1FFFFF) { in codepoint_to_utf8()822 int codepoint; in json_append_unicode_escape() local829 if (codepoint < 0) in json_append_unicode_escape()838 if ((codepoint & 0xF800) == 0xD800) { in json_append_unicode_escape()840 if (codepoint & 0x400) in json_append_unicode_escape()859 codepoint = (codepoint & 0x3FF) << 10; in json_append_unicode_escape()[all …]