Searched refs:zend_binary_strcmp (Results 1 – 8 of 8) sorted by relevance
/PHP-7.3/ext/intl/transliterator/ |
H A D | transliterator_class.c | 215 if(zend_binary_strcmp( "id", sizeof( "id" ) - 1, in Transliterator_get_property_ptr_ptr() 239 ( zend_binary_strcmp( "id", sizeof( "id" ) - 1, in Transliterator_read_property() 270 ( zend_binary_strcmp( "id", sizeof( "id" ) - 1, in Transliterator_write_property()
|
/PHP-7.3/sapi/phpdbg/ |
H A D | phpdbg_wait.c | 256 …if (Z_TYPE_P(name) == IS_STRING && !zend_binary_strcmp(extension->name, strlen(extension->name), Z… in phpdbg_webdata_decompress()
|
/PHP-7.3/Zend/ |
H A D | zend_operators.c | 1896 ret = zend_binary_strcmp(ZSTR_VAL(str1), ZSTR_LEN(str1), ZSTR_VAL(str2), ZSTR_LEN(str2)); in string_compare_function_ex() 1912 return zend_binary_strcmp(Z_STRVAL_P(op1), Z_STRLEN_P(op1), Z_STRVAL_P(op2), Z_STRLEN_P(op2)); in string_compare_function() 1918 int ret = zend_binary_strcmp(ZSTR_VAL(str1), ZSTR_LEN(str1), ZSTR_VAL(str2), ZSTR_LEN(str2)); in string_compare_function() 2710 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 2830 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() 2945 strcmp_ret = zend_binary_strcmp(s1->val, s1->len, s2->val, s2->len);
|
H A D | zend_operators.h | 380 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 | 600 RETURN_LONG(zend_binary_strcmp(ZSTR_VAL(s1), ZSTR_LEN(s1), ZSTR_VAL(s2), ZSTR_LEN(s2))); in ZEND_FUNCTION()
|
/PHP-7.3/ext/date/ |
H A D | php_date.c | 4290 if(zend_binary_strcmp("y", sizeof("y") - 1, Z_STRVAL_P(member), Z_STRLEN_P(member)) == 0 || in date_interval_get_property_ptr_ptr() 4291 zend_binary_strcmp("m", sizeof("m") - 1, Z_STRVAL_P(member), Z_STRLEN_P(member)) == 0 || in date_interval_get_property_ptr_ptr() 4292 zend_binary_strcmp("d", sizeof("d") - 1, Z_STRVAL_P(member), Z_STRLEN_P(member)) == 0 || in date_interval_get_property_ptr_ptr() 4293 zend_binary_strcmp("h", sizeof("h") - 1, Z_STRVAL_P(member), Z_STRLEN_P(member)) == 0 || in date_interval_get_property_ptr_ptr() 4294 zend_binary_strcmp("i", sizeof("i") - 1, Z_STRVAL_P(member), Z_STRLEN_P(member)) == 0 || in date_interval_get_property_ptr_ptr() 4295 zend_binary_strcmp("s", sizeof("s") - 1, Z_STRVAL_P(member), Z_STRLEN_P(member)) == 0 || in date_interval_get_property_ptr_ptr() 4296 zend_binary_strcmp("f", sizeof("f") - 1, Z_STRVAL_P(member), Z_STRLEN_P(member)) == 0 || in date_interval_get_property_ptr_ptr() 4297 zend_binary_strcmp("days", sizeof("days") - 1, Z_STRVAL_P(member), Z_STRLEN_P(member)) == 0 || in date_interval_get_property_ptr_ptr() 4298 zend_binary_strcmp("invert", sizeof("invert") - 1, Z_STRVAL_P(member), Z_STRLEN_P(member)) == 0) { in date_interval_get_property_ptr_ptr()
|
/PHP-7.3/ext/phar/ |
H A D | dirstream.c | 164 …result = zend_binary_strcmp(ZSTR_VAL(f->key), ZSTR_LEN(f->key), ZSTR_VAL(s->key), ZSTR_LEN(s->key)… in phar_compare_dir_name()
|
/PHP-7.3/ext/standard/ |
H A D | array.c | 273 return zend_binary_strcmp(s1, l1, s2, l2); in php_array_key_compare_string()
|
Completed in 55 milliseconds