Home
last modified time | relevance | path

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

/PHP-7.2/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.2/ext/json/
H A Djson_scanner.re326 int utf32, utf16_hi, utf16_lo;
329 utf32 = ((utf16_lo & 0x3FF) << 10) + (utf16_hi & 0x3FF) + 0x10000;
331 *(s->pstr++) = (char) (0xf0 | (utf32 >> 18));
332 *(s->pstr++) = (char) (0x80 | ((utf32 >> 12) & 0x3f));
333 *(s->pstr++) = (char) (0x80 | ((utf32 >> 6) & 0x3f));
334 *(s->pstr++) = (char) (0x80 | (utf32 & 0x3f));
H A Djson_scanner.c1357 int utf32, utf16_hi, utf16_lo; in php_json_scan() local
1360 utf32 = ((utf16_lo & 0x3FF) << 10) + (utf16_hi & 0x3FF) + 0x10000; in php_json_scan()
1362 *(s->pstr++) = (char) (0xf0 | (utf32 >> 18)); in php_json_scan()
1363 *(s->pstr++) = (char) (0x80 | ((utf32 >> 12) & 0x3f)); in php_json_scan()
1364 *(s->pstr++) = (char) (0x80 | ((utf32 >> 6) & 0x3f)); in php_json_scan()
1365 *(s->pstr++) = (char) (0x80 | (utf32 & 0x3f)); in php_json_scan()
1649 int utf32, utf16_hi, utf16_lo; in php_json_scan() local
1654 *(s->pstr++) = (char) (0xf0 | (utf32 >> 18)); in php_json_scan()
1655 *(s->pstr++) = (char) (0x80 | ((utf32 >> 12) & 0x3f)); in php_json_scan()
1656 *(s->pstr++) = (char) (0x80 | ((utf32 >> 6) & 0x3f)); in php_json_scan()
[all …]
/PHP-7.2/ext/mysqli/tests/
H A Dmysqli_character_set.phpt46 /* The server currently 16.08.2010 can't handle data sent in utf16 and utf32 */
48 …'] == '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.phpt101 …if ('ucs2' == $tmp['Charset'] || 'utf16' == $tmp['Charset'] || 'utf32' == $tmp['Charset'] || 'utf1…
/PHP-7.2/ext/mysqlnd/
H A Dmysqlnd_charset.c427 static unsigned int mysqlnd_mbcharlen_utf32(unsigned int utf32 __attribute((unused))) in mysqlnd_mbcharlen_utf32()

Completed in 26 milliseconds