Searched refs:utf16 (Results 1 – 7 of 7) sorted by relevance
354 if (utf16) { in json_utf8_to_utf16()391 unsigned short *utf16; in json_escape_string() local426 if (utf16) { in json_escape_string()427 efree(utf16); in json_escape_string()541 if (utf16) { in json_escape_string()542 efree(utf16); in json_escape_string()659 unsigned short *utf16; in php_json_decode_ex() local666 if (utf16) { in php_json_decode_ex()667 efree(utf16); in php_json_decode_ex()675 efree(utf16); in php_json_decode_ex()[all …]
356 if (utf16 < 0x80) in utf16_to_utf8()360 else if (utf16 < 0x800) in utf16_to_utf8()362 smart_str_appendc(buf, 0xc0 | (utf16 >> 6)); in utf16_to_utf8()365 else if ((utf16 & 0xfc00) == 0xdc00 in utf16_to_utf8()376 | (utf16 & 0x3ff)) + 0x10000; in utf16_to_utf8()450 unsigned short utf16 = 0; in parse_JSON_ex() local502 utf16 = dehexchar(next_char) << 12; in parse_JSON_ex()504 utf16 += dehexchar(next_char) << 8; in parse_JSON_ex()506 utf16 += dehexchar(next_char) << 4; in parse_JSON_ex()508 utf16 += dehexchar(next_char); in parse_JSON_ex()[all …]
50 /* The server currently 16.08.2010 can't handle data sent in utf16 and utf32 */52 …if ($charset['Charset'] == 'ucs2' || $charset['Charset'] == 'utf16' || $charset['Charset'] == 'utf…
90 /* The server currently 16.08.2010 can't handle data sent in utf16 and utf32 */91 …if ($charset['Charset'] == 'ucs2' || $charset['Charset'] == 'utf16' || $charset['Charset'] == 'utf…
105 …if ('ucs2' == $tmp['Charset'] || 'utf16' == $tmp['Charset'] || 'utf32' == $tmp['Charset'] || 'utf1…
413 static uint mysqlnd_mbcharlen_utf16(unsigned int utf16) in mysqlnd_mbcharlen_utf16() argument415 return UTF16_HIGH_HEAD(utf16) ? 4 : 2; in mysqlnd_mbcharlen_utf16()
825 2004/05/24: [impl] divide enc/utf16.c to utf16_be.c and utf16_le.c.
Completed in 18 milliseconds