Searched refs:zend_binary_strcmp (Results 1 – 5 of 5) sorted by relevance
/PHP-5.4/ext/intl/transliterator/ |
H A D | transliterator_class.c | 258 if(zend_binary_strcmp( "id", sizeof( "id" ) - 1, in Transliterator_get_property_ptr_ptr() 291 ( zend_binary_strcmp( "id", sizeof( "id" ) - 1, in Transliterator_read_property() 324 ( zend_binary_strcmp( "id", sizeof( "id" ) - 1, in Transliterator_write_property()
|
/PHP-5.4/Zend/ |
H A D | zend_operators.c | 1464 ZVAL_LONG(result, zend_binary_strcmp("", 0, Z_STRVAL_P(op2), Z_STRLEN_P(op2))); in compare_function() 1468 ZVAL_LONG(result, zend_binary_strcmp(Z_STRVAL_P(op1), Z_STRLEN_P(op1), "", 0)); in compare_function() 1945 ZEND_API int zend_binary_strcmp(const char *s1, uint len1, const char *s2, uint len2) /* {{{ */ in zend_binary_strcmp() function 2022 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 | 340 ZEND_API int zend_binary_strcmp(const char *s1, uint len1, const char *s2, uint len2);
|
H A D | zend_builtin_functions.c | 503 RETURN_LONG(zend_binary_strcmp(s1, s1_len, s2, s2_len)); in ZEND_FUNCTION()
|
/PHP-5.4/ext/phar/ |
H A D | dirstream.c | 171 result = zend_binary_strcmp(f->arKey, f->nKeyLength, s->arKey, s->nKeyLength); in phar_compare_dir_name()
|
Completed in 21 milliseconds