Lines Matching refs:uret_buf
117 UChar* uret_buf = NULL; in PHP_FUNCTION() local
182 uret_buf = eumalloc( uret_len + 1 ); in PHP_FUNCTION()
186 …size_needed = unorm_normalize( uinput, uinput_len, form, (int32_t) 0 /* options */, uret_buf, uret… in PHP_FUNCTION()
188 size_needed = intl_normalize(form, uinput, uinput_len, uret_buf, uret_len, &status); in PHP_FUNCTION()
196 efree( uret_buf ); in PHP_FUNCTION()
205 efree( uret_buf ); in PHP_FUNCTION()
206 uret_buf = eumalloc( size_needed + 1 ); in PHP_FUNCTION()
213 …size_needed = unorm_normalize( uinput, uinput_len, form, (int32_t) 0 /* options */, uret_buf, uret… in PHP_FUNCTION()
215 size_needed = intl_normalize(form, uinput, uinput_len, uret_buf, uret_len, &status); in PHP_FUNCTION()
222 efree( uret_buf ); in PHP_FUNCTION()
234 u8str = intl_convert_utf16_to_utf8(uret_buf, uret_len, &status ); in PHP_FUNCTION()
235 efree( uret_buf ); in PHP_FUNCTION()