Home
last modified time | relevance | path

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

/PHP-7.1/ext/intl/tests/
H A Dbug75317.phpt11 $utf32 = UConverter::getAliases('utf-32')[0];
32 printResult($c->getSourceEncoding(), $utf32);
38 printResult($c->getSourceEncoding(), $utf32);
/PHP-7.1/ext/json/
H A Djson_scanner.re301 int utf32, utf16_hi, utf16_lo;
304 utf32 = ((utf16_lo & 0x3FF) << 10) + (utf16_hi & 0x3FF) + 0x10000;
306 *(s->pstr++) = (char) (0xf0 | (utf32 >> 18));
307 *(s->pstr++) = (char) (0x80 | ((utf32 >> 12) & 0x3f));
308 *(s->pstr++) = (char) (0x80 | ((utf32 >> 6) & 0x3f));
309 *(s->pstr++) = (char) (0x80 | (utf32 & 0x3f));
H A Djson_scanner.c1238 int utf32, utf16_hi, utf16_lo; in php_json_scan() local
1241 utf32 = ((utf16_lo & 0x3FF) << 10) + (utf16_hi & 0x3FF) + 0x10000; in php_json_scan()
1243 *(s->pstr++) = (char) (0xf0 | (utf32 >> 18)); in php_json_scan()
1244 *(s->pstr++) = (char) (0x80 | ((utf32 >> 12) & 0x3f)); in php_json_scan()
1245 *(s->pstr++) = (char) (0x80 | ((utf32 >> 6) & 0x3f)); in php_json_scan()
1246 *(s->pstr++) = (char) (0x80 | (utf32 & 0x3f)); in php_json_scan()
/PHP-7.1/ext/mysqli/tests/
H A Dmysqli_character_set.phpt47 /* The server currently 16.08.2010 can't handle data sent in utf16 and utf32 */
49 …'] == 'ucs2' || $charset['Charset'] == 'utf16' || $charset['Charset'] == 'utf32' || 'utf16le' == $…
H A Dmysqli_options.phpt90 /* The server currently 16.08.2010 can't handle data sent in utf16 and utf32 */
91 …charset['Charset'] == 'ucs2' || $charset['Charset'] == 'utf16' || $charset['Charset'] == 'utf32') {
H A Dmysqli_set_charset.phpt105 …if ('ucs2' == $tmp['Charset'] || 'utf16' == $tmp['Charset'] || 'utf32' == $tmp['Charset'] || 'utf1…
/PHP-7.1/ext/mysqlnd/
H A Dmysqlnd_charset.c427 static unsigned int mysqlnd_mbcharlen_utf32(unsigned int utf32 __attribute((unused))) in mysqlnd_mbcharlen_utf32()

Completed in 19 milliseconds