Searched refs:zend_binary_strcasecmp_l (Results 1 – 3 of 3) sorted by relevance
/PHP-7.3/Zend/ |
H A D | zend_operators.c | 1894 ret = zend_binary_strcasecmp_l(ZSTR_VAL(str1), ZSTR_LEN(str1), ZSTR_VAL(str2), ZSTR_LEN(str1)); in string_compare_function_ex() 1934 …return zend_binary_strcasecmp_l(Z_STRVAL_P(op1), Z_STRLEN_P(op1), Z_STRVAL_P(op2), Z_STRLEN_P(op2)… in string_case_compare_function() 1940 …int ret = zend_binary_strcasecmp_l(ZSTR_VAL(str1), ZSTR_LEN(str1), ZSTR_VAL(str2), ZSTR_LEN(str1)); in string_case_compare_function() 2785 ZEND_API int ZEND_FASTCALL zend_binary_strcasecmp_l(const char *s1, size_t len1, const char *s2, si… in zend_binary_strcasecmp_l() function 2842 return zend_binary_strcasecmp_l(Z_STRVAL_P(s1), Z_STRLEN_P(s1), Z_STRVAL_P(s2), Z_STRLEN_P(s2)); in zend_binary_zval_strcasecmp()
|
H A D | zend_operators.h | 384 ZEND_API int ZEND_FASTCALL zend_binary_strcasecmp_l(const char *s1, size_t len1, const char *s2, si…
|
/PHP-7.3/ext/standard/ |
H A D | array.c | 240 return zend_binary_strcasecmp_l(s1, l1, s2, l2); in php_array_key_compare_string_case()
|
Completed in 25 milliseconds