Searched refs:utf32 (Results 1 – 7 of 7) sorted by relevance
11 $utf32 = UConverter::getAliases('utf-32')[0];32 printResult($c->getSourceEncoding(), $utf32);38 printResult($c->getSourceEncoding(), $utf32);
301 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));
1238 int utf32, utf16_hi, utf16_lo; in php_json_scan() local1241 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()
47 /* The server currently 16.08.2010 can't handle data sent in utf16 and utf32 */49 …'] == 'ucs2' || $charset['Charset'] == 'utf16' || $charset['Charset'] == 'utf32' || 'utf16le' == $…
90 /* 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') {
105 …if ('ucs2' == $tmp['Charset'] || 'utf16' == $tmp['Charset'] || 'utf32' == $tmp['Charset'] || 'utf1…
427 static unsigned int mysqlnd_mbcharlen_utf32(unsigned int utf32 __attribute((unused))) in mysqlnd_mbcharlen_utf32()
Completed in 14 milliseconds