Searched refs:converted_buf (Results 1 – 2 of 2) sorted by relevance
/php-src/ext/mbstring/ |
H A D | php_unicode.c | 286 uint32_t wchar_buf[64], converted_buf[192]; in php_unicode_convert_case() local 299 uint32_t *p = converted_buf; in php_unicode_convert_case() 468 ZEND_ASSERT(p - converted_buf <= 192); in php_unicode_convert_case() 469 dst_encoding->from_wchar(converted_buf, p - converted_buf, &buf, !in_len); in php_unicode_convert_case()
|
H A D | mbstring.c | 3532 uint32_t wchar_buf[64], converted_buf[64 * 2]; in jp_kana_convert() local 3542 uint32_t *converted = converted_buf; in jp_kana_convert() 3585 encoding->from_wchar(converted_buf, converted - converted_buf, &buf, !in_len); in jp_kana_convert() 3969 uint32_t wchar_buf[32], converted_buf[32 * 13]; in html_numeric_entity_encode() local 3983 uint32_t *converted = converted_buf; in html_numeric_entity_encode() 4024 ZEND_ASSERT(converted <= converted_buf + sizeof(converted_buf)/sizeof(*converted_buf)); in html_numeric_entity_encode() 4025 encoding->from_wchar(converted_buf, converted - converted_buf, &buf, !in_len); in html_numeric_entity_encode() 4087 uint32_t wchar_buf[128], converted_buf[128]; in html_numeric_entity_decode() local 4138 converted = converted_buf + (p - wchar_buf); in html_numeric_entity_decode() 4141 converted = converted_buf; in html_numeric_entity_decode() [all …]
|
Completed in 33 milliseconds