Searched refs:utf32 (Results 1 – 5 of 5) sorted by relevance
50 /* The server currently 16.08.2010 can't handle data sent in utf16 and utf32 */52 …'] == '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…
372 unsigned long utf32; in utf16_to_utf8() local374 utf32 = (((buf->c[buf->len - 2] & 0xf) << 16) in utf16_to_utf8()379 smart_str_appendc(buf, (unsigned char) (0xf0 | (utf32 >> 18))); in utf16_to_utf8()380 smart_str_appendc(buf, 0x80 | ((utf32 >> 12) & 0x3f)); in utf16_to_utf8()381 smart_str_appendc(buf, 0x80 | ((utf32 >> 6) & 0x3f)); in utf16_to_utf8()382 smart_str_appendc(buf, 0x80 | (utf32 & 0x3f)); in utf16_to_utf8()
429 mysqlnd_mbcharlen_utf32(unsigned int utf32 __attribute((unused))) in mysqlnd_mbcharlen_utf32()
Completed in 15 milliseconds