utf32             372 ext/json/JSON_parser.c         unsigned long utf32;
utf32             374 ext/json/JSON_parser.c         utf32 = (((buf->c[buf->len - 2] & 0xf) << 16)
utf32             379 ext/json/JSON_parser.c         smart_str_appendc(buf, (unsigned char) (0xf0 | (utf32 >> 18)));
utf32             380 ext/json/JSON_parser.c         smart_str_appendc(buf, 0x80 | ((utf32 >> 12) & 0x3f));
utf32             381 ext/json/JSON_parser.c         smart_str_appendc(buf, 0x80 | ((utf32 >> 6) & 0x3f));
utf32             382 ext/json/JSON_parser.c         smart_str_appendc(buf, 0x80 | (utf32 & 0x3f));
utf32             427 ext/mysqlnd/mysqlnd_charset.c static unsigned int mysqlnd_mbcharlen_utf32(unsigned int utf32 __attribute((unused)))