Searched refs:ustr_len (Results 1 - 4 of 4) sorted by relevance
| /PHP_TRUNK/ext/intl/collator/ |
| H A D | collator_convert.c | 222 int ustr_len = 0; local 227 &ustr, &ustr_len, 235 ZVAL_STRINGL( zstr, (char*)ustr, UBYTES(ustr_len), FALSE ); 249 int ustr_len = 0; local 300 &ustr, &ustr_len, 310 ZVAL_STRINGL( zstr, (char*)ustr, UBYTES(ustr_len), FALSE );
|
| H A D | collator_sort.c | 551 int ustr_len = 0; local 585 &ustr, &ustr_len, str, str_len, COLLATOR_ERROR_CODE_P( co ) ); 600 key_len = ucol_getSortKey(co->ucoll, ustr, ustr_len, key, 0); 606 key_len = ucol_getSortKey(co->ucoll, ustr, ustr_len, key, key_len);
|
| /PHP_TRUNK/ext/intl/grapheme/ |
| H A D | grapheme_string.c | 403 int str_len, sub_str_len, ustr_len; local 444 ustr_len = 0; 446 intl_convert_utf8_to_utf16(&ustr, &ustr_len, (char *)str, str_len, &status); 466 ubrk_setText(bi, ustr, ustr_len, &status); 490 if ( 0 != start || sub_str_start_pos >= ustr_len ) { 508 intl_convert_utf16_to_utf8((char **)&sub_str, &sub_str_len, ustr + sub_str_start_pos, ustr_len - sub_str_start_pos, &status); 566 sub_str_end_pos = ustr_len; 797 int str_len, ustr_len; local 887 ustr_len = 0; 889 intl_convert_utf8_to_utf16(&ustr, &ustr_len, (cha [all...] |
| /PHP_TRUNK/ext/intl/transliterator/ |
| H A D | transliterator_methods.c | 305 int32_t ustr_len = 0, local 384 intl_convert_utf8_to_utf16( &ustr, &ustr_len, str, str_len, 390 if( ( start > ustr_len ) || (( limit != -1 ) && (limit > ustr_len ) ) ) 396 "(in this case, %d)", (int) ustr_len ); 407 uresult = safe_emalloc( ustr_len, sizeof( UChar ), 1 * sizeof( UChar ) ); 408 capacity = ustr_len + 1; 412 int32_t temp_limit = ( limit == -1 ? ustr_len : (int32_t) limit ); 413 memcpy( uresult, ustr, ustr_len * sizeof( UChar ) ); 414 uresult_len = ustr_len; [all...] |
Completed in 5 milliseconds