Searched refs:zend_binary_strcmp (Results 1 – 5 of 5) sorted by relevance
/PHP-8.4/Zend/ |
H A D | zend_operators.c | 2122 ret = zend_binary_strcmp(ZSTR_VAL(str1), ZSTR_LEN(str1), ZSTR_VAL(str2), ZSTR_LEN(str2)); in string_compare_function_ex() 2138 return zend_binary_strcmp(Z_STRVAL_P(op1), Z_STRLEN_P(op1), Z_STRVAL_P(op2), Z_STRLEN_P(op2)); in string_compare_function() 2144 int ret = zend_binary_strcmp(ZSTR_VAL(str1), ZSTR_LEN(str1), ZSTR_VAL(str2), ZSTR_LEN(str2)); in string_compare_function() 2221 int cmp_result = zend_binary_strcmp( in compare_long_to_string() 2243 int cmp_result = zend_binary_strcmp( in compare_double_to_string() 3157 ZEND_API int ZEND_FASTCALL zend_binary_strcmp(const char *s1, size_t len1, const char *s2, size_t l… in zend_binary_strcmp() function 3277 return zend_binary_strcmp(Z_STRVAL_P(s1), Z_STRLEN_P(s1), Z_STRVAL_P(s2), Z_STRLEN_P(s2)); in zend_binary_zval_strcmp() 3380 strcmp_ret = zend_binary_strcmp(s1->val, s1->len, s2->val, s2->len);
|
H A D | zend_operators.h | 487 ZEND_API int ZEND_FASTCALL zend_binary_strcmp(const char *s1, size_t len1, const char *s2, size_t l…
|
H A D | zend_builtin_functions.c | 350 RETURN_LONG(zend_binary_strcmp(ZSTR_VAL(s1), ZSTR_LEN(s1), ZSTR_VAL(s2), ZSTR_LEN(s2))); in ZEND_FUNCTION()
|
/PHP-8.4/ext/phar/ |
H A D | dirstream.c | 158 int result = zend_binary_strcmp( in phar_compare_dir_name()
|
/PHP-8.4/ext/standard/ |
H A D | array.c | 213 return zend_binary_strcmp(s1, l1, s2, l2); in php_array_key_compare_string_unstable_i()
|
Completed in 79 milliseconds