Searched refs:ustr (Results 1 – 6 of 6) sorted by relevance
/php-src/ext/intl/collator/ |
H A D | collator_convert.c | 179 UChar *ustr = NULL; in collator_convert_zstr_utf8_to_utf16() local 185 &ustr, &ustr_len, in collator_convert_zstr_utf8_to_utf16() 194 zend_string *zstr = zend_string_init((char *) ustr, UBYTES(ustr_len), 0); in collator_convert_zstr_utf8_to_utf16() 195 efree((char *)ustr); in collator_convert_zstr_utf8_to_utf16() 206 UChar* ustr = NULL; in collator_convert_object_to_string() local 233 &ustr, &ustr_len, in collator_convert_object_to_string() 244 ZVAL_STRINGL( zstr, (char*)ustr, UBYTES(ustr_len)); in collator_convert_object_to_string() 246 efree((char *)ustr); in collator_convert_object_to_string()
|
H A D | collator_sort.c | 503 UChar* ustr = NULL; in PHP_FUNCTION() local 535 &ustr, &ustr_len, str, str_len, COLLATOR_ERROR_CODE_P( co ) ); in PHP_FUNCTION() 544 efree( ustr ); in PHP_FUNCTION() 550 key_len = ucol_getSortKey(co->ucoll, ustr, ustr_len, NULL, 0); in PHP_FUNCTION() 552 efree( ustr ); in PHP_FUNCTION() 556 key_len = ucol_getSortKey(co->ucoll, ustr, ustr_len, (uint8_t*)ZSTR_VAL(key_str), key_len); in PHP_FUNCTION() 557 efree( ustr ); in PHP_FUNCTION()
|
/php-src/ext/intl/grapheme/ |
H A D | grapheme_string.c | 329 UChar *ustr; in PHP_FUNCTION() local 380 ustr = NULL; in PHP_FUNCTION() 391 if (ustr) { in PHP_FUNCTION() 429 if (ustr) { in PHP_FUNCTION() 430 efree(ustr); in PHP_FUNCTION() 448 if (ustr) { in PHP_FUNCTION() 470 if (ustr) { in PHP_FUNCTION() 471 efree(ustr); in PHP_FUNCTION() 505 efree(ustr); in PHP_FUNCTION() 513 efree(ustr); in PHP_FUNCTION() [all …]
|
/php-src/ext/mbstring/tests/ |
H A D | bug30549.phpt | 15 $ustr = mb_convert_encoding(pack('C', $fromc), 'UCS-4BE', $enc); 16 foreach (unpack('Nc', $ustr) as $unic);
|
/php-src/ext/intl/transliterator/ |
H A D | transliterator_methods.c | 265 UChar *ustr = NULL, in PHP_FUNCTION() local 336 intl_convert_utf8_to_utf16(&ustr, &ustr_len, str, str_len, TRANSLITERATOR_ERROR_CODE_P(to)); in PHP_FUNCTION() 363 memcpy( uresult, ustr, ustr_len * sizeof( UChar ) ); in PHP_FUNCTION() 400 if( ustr ) in PHP_FUNCTION() 401 efree( ustr ); in PHP_FUNCTION()
|
/php-src/ext/intl/timezone/ |
H A D | timezone_class.cpp | 283 UnicodeString ustr; in TimeZone_get_debug_info() local 304 tz->getID(ustr); in TimeZone_get_debug_info() 306 ustr.getBuffer(), ustr.length(), &uec); in TimeZone_get_debug_info()
|
Completed in 20 milliseconds