Lines Matching refs:co

55 	Collator_object* co = NULL;  in collator_regular_compare_function()  local
76 co = Z_INTL_COLLATOR_P(&INTL_G(current_collator)); in collator_regular_compare_function()
78 if (!co || !co->ucoll) { in collator_regular_compare_function()
79 intl_error_set_code( NULL, COLLATOR_ERROR_CODE( co ) ); in collator_regular_compare_function()
80 intl_errors_set_custom_msg( COLLATOR_ERROR_P( co ), in collator_regular_compare_function()
89 co->ucoll, in collator_regular_compare_function()
187 Collator_object* co = NULL; in collator_icu_compare_function() local
195 co = Z_INTL_COLLATOR_P(&INTL_G(current_collator)); in collator_icu_compare_function()
199 co->ucoll, in collator_icu_compare_function()
321 collator_convert_hash_from_utf8_to_utf16( hash, COLLATOR_ERROR_CODE_P( co ) ); in collator_sort_internal()
322 COLLATOR_CHECK_STATUS( co, "Error converting hash from UTF-8 to UTF-16" ); in collator_sort_internal()
335 collator_convert_hash_from_utf16_to_utf8( hash, COLLATOR_ERROR_CODE_P( co ) ); in collator_sort_internal()
336 COLLATOR_CHECK_STATUS( co, "Error converting hash from UTF-16 to UTF-8" ); in collator_sort_internal()
409 if (!co || !co->ucoll) { in PHP_FUNCTION()
410 intl_error_set_code( NULL, COLLATOR_ERROR_CODE( co ) ); in PHP_FUNCTION()
411 intl_errors_set_custom_msg( COLLATOR_ERROR_P( co ), in PHP_FUNCTION()
440 …f16_buf, &utf16_len, Z_STRVAL_P( hashData ), Z_STRLEN_P( hashData ), COLLATOR_ERROR_CODE_P( co ) ); in PHP_FUNCTION()
442 if( U_FAILURE( COLLATOR_ERROR_CODE( co ) ) ) in PHP_FUNCTION()
444 intl_error_set_code( NULL, COLLATOR_ERROR_CODE( co ) ); in PHP_FUNCTION()
445 intl_errors_set_custom_msg( COLLATOR_ERROR_P( co ), "Sort with sort keys failed", 0 ); in PHP_FUNCTION()
469 sortKeyLen = ucol_getSortKey( co->ucoll, in PHP_FUNCTION()
485 …sortKeyLen = ucol_getSortKey( co->ucoll, utf16_buf, utf16_len, (uint8_t*)sortKeyBuf + sortKeyBufOf… in PHP_FUNCTION()
575 if (!co || !co->ucoll) { in PHP_FUNCTION()
576 intl_error_set_code( NULL, COLLATOR_ERROR_CODE( co ) ); in PHP_FUNCTION()
577 intl_errors_set_custom_msg( COLLATOR_ERROR_P( co ), in PHP_FUNCTION()
590 &ustr, &ustr_len, str, str_len, COLLATOR_ERROR_CODE_P( co ) ); in PHP_FUNCTION()
591 if( U_FAILURE( COLLATOR_ERROR_CODE( co ) ) ) in PHP_FUNCTION()
594 intl_error_set_code( NULL, COLLATOR_ERROR_CODE( co ) ); in PHP_FUNCTION()
597 intl_errors_set_custom_msg( COLLATOR_ERROR_P( co ), in PHP_FUNCTION()
605 key_len = ucol_getSortKey(co->ucoll, ustr, ustr_len, NULL, 0); in PHP_FUNCTION()
611 key_len = ucol_getSortKey(co->ucoll, ustr, ustr_len, (uint8_t*)ZSTR_VAL(key_str), key_len); in PHP_FUNCTION()