Home
last modified time | relevance | path

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

/PHP-5.5/ext/json/
H A Djson.c368 if (utf16) { in json_utf8_to_utf16()
405 unsigned short *utf16; in json_escape_string() local
436 if (utf16) { in json_escape_string()
437 efree(utf16); in json_escape_string()
548 if (utf16) { in json_escape_string()
549 efree(utf16); in json_escape_string()
666 unsigned short *utf16; in php_json_decode_ex() local
673 if (utf16) { in php_json_decode_ex()
674 efree(utf16); in php_json_decode_ex()
682 efree(utf16); in php_json_decode_ex()
[all …]
H A DJSON_parser.c356 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() local
502 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 …]
/PHP-5.5/ext/intl/
H A Dintl_convertcpp.cpp35 UChar *utf16 = ret.getBuffer(capacity); in intl_stringFromChar() local
38 u_strFromUTF8WithSub(utf16, ret.getCapacity(), &utf16_len, in intl_stringFromChar()
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_character_set.phpt50 /* 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…
H A Dmysqli_options.phpt90 /* 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…
H A Dmysqli_set_charset.phpt105 …if ('ucs2' == $tmp['Charset'] || 'utf16' == $tmp['Charset'] || 'utf32' == $tmp['Charset'] || 'utf1…
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_charset.c413 static uint mysqlnd_mbcharlen_utf16(unsigned int utf16) in mysqlnd_mbcharlen_utf16() argument
415 return UTF16_HIGH_HEAD(utf16) ? 4 : 2; in mysqlnd_mbcharlen_utf16()
/PHP-5.5/ext/mbstring/oniguruma/
H A DHISTORY1030 2004/05/24: [impl] divide enc/utf16.c to utf16_be.c and utf16_le.c.

Completed in 35 milliseconds