Home
last modified time | relevance | path

Searched refs:str2 (Results 51 – 62 of 62) sorted by relevance

123

/PHP-7.4/ext/standard/tests/strings/
H A Dstrncasecmp_basic.phpt5 /* Prototype : int strncasecmp ( string $str1, string $str2, int $len );
H A Dstrncmp_basic.phpt5 /* Prototype : int strncmp ( string $str1, string $str2, int $len );
H A Dstrnatcmp_basic.phpt5 /* Prototype : int strnatcmp ( string $str1 , string $str2 )
H A Dstrrchr_variation12.phpt10 /* Test strrchr() function: with binary values & null terminated strings passed to 'str1' & 'str2' …
/PHP-7.4/Zend/
H A Dzend_operators.c1925 zend_string *str2 = zval_get_tmp_string(op2, &tmp_str2); in string_compare_function_ex() local
1929 ret = zend_binary_strcasecmp_l(ZSTR_VAL(str1), ZSTR_LEN(str1), ZSTR_VAL(str2), ZSTR_LEN(str1)); in string_compare_function_ex()
1931 ret = zend_binary_strcmp(ZSTR_VAL(str1), ZSTR_LEN(str1), ZSTR_VAL(str2), ZSTR_LEN(str2)); in string_compare_function_ex()
1952 zend_string *str2 = zval_get_tmp_string(op2, &tmp_str2); in string_compare_function() local
1953 int ret = zend_binary_strcmp(ZSTR_VAL(str1), ZSTR_LEN(str1), ZSTR_VAL(str2), ZSTR_LEN(str2)); in string_compare_function()
1974 zend_string *str2 = zval_get_tmp_string(op2, &tmp_str2); in string_case_compare_function() local
1975 …int ret = zend_binary_strcasecmp_l(ZSTR_VAL(str1), ZSTR_LEN(str1), ZSTR_VAL(str2), ZSTR_LEN(str1)); in string_case_compare_function()
1988 zend_string *str2 = zval_get_tmp_string(op2, &tmp_str2); in string_locale_compare_function() local
1989 int ret = strcoll(ZSTR_VAL(str1), ZSTR_VAL(str2)); in string_locale_compare_function()
H A Dzend_builtin_functions.c104 ZEND_ARG_INFO(0, str2)
109 ZEND_ARG_INFO(0, str2)
H A Dzend_compile.c788 zend_string *zend_concat3(char *str1, size_t str1_len, char *str2, size_t str2_len, char *str3, siz… in zend_concat3() argument
794 memcpy(ZSTR_VAL(res) + str1_len, str2, str2_len); in zend_concat3()
/PHP-7.4/ext/intl/tests/
H A Dut_common.inc50 function ut_coll_compare( $coll, $str1, $str2 )
52 …return $GLOBALS['oo-mode'] ? $coll->compare( $str1, $str2 ) : collator_compare( $coll, $str1, $str…
/PHP-7.4/ext/libxml/
H A Dlibxml.c555 error_copy.str2 = NULL; in _php_list_set_error_structure()
/PHP-7.4/ext/standard/
H A Dbasic_functions.c1557 ZEND_ARG_INFO(0, str2)
2167 ZEND_ARG_INFO(0, str2)
2328 ZEND_ARG_INFO(0, str2)
H A Dstring.c5679 zend_string *str2 = zval_get_tmp_string(op2, &tmp_str2); local
5681 …ZVAL_LONG(result, strnatcmp_ex(ZSTR_VAL(str1), ZSTR_LEN(str1), ZSTR_VAL(str2), ZSTR_LEN(str2), cas…
H A Darray.c495 zend_string *str2 = zval_get_tmp_string(&s->val, &tmp_str2); in php_array_natural_general_compare() local
497 …int result = strnatcmp_ex(ZSTR_VAL(str1), ZSTR_LEN(str1), ZSTR_VAL(str2), ZSTR_LEN(str2), fold_cas… in php_array_natural_general_compare()

Completed in 89 milliseconds

123