Searched refs:zend_binary_strcmp (Results 1 – 5 of 5) sorted by relevance
/PHP-5.3/main/ |
H A D | php3_compat.h | 96 #define php3_binary_strcmp zend_binary_strcmp
|
/PHP-5.3/ext/phar/ |
H A D | dirstream.c | 172 result = zend_binary_strcmp(f->arKey, f->nKeyLength, s->arKey, s->nKeyLength); in phar_compare_dir_name() 174 result = zend_binary_strcmp(f->key.arKey.s, f->nKeyLength, s->key.arKey.s, s->nKeyLength); in phar_compare_dir_name()
|
/PHP-5.3/Zend/ |
H A D | zend_operators.c | 1429 ZVAL_LONG(result, zend_binary_strcmp("", 0, Z_STRVAL_P(op2), Z_STRLEN_P(op2))); in compare_function() 1433 ZVAL_LONG(result, zend_binary_strcmp(Z_STRVAL_P(op1), Z_STRLEN_P(op1), "", 0)); in compare_function() 1904 ZEND_API int zend_binary_strcmp(const char *s1, uint len1, const char *s2, uint len2) /* {{{ */ in zend_binary_strcmp() function 1970 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()
|
H A D | zend_operators.h | 314 ZEND_API int zend_binary_strcmp(const char *s1, uint len1, const char *s2, uint len2);
|
H A D | zend_builtin_functions.c | 479 RETURN_LONG(zend_binary_strcmp(s1, s1_len, s2, s2_len)); in ZEND_FUNCTION()
|
Completed in 27 milliseconds