Home
last modified time | relevance | path

Searched refs:s2_len (Results 1 – 3 of 3) sorted by relevance

/PHP-5.5/ext/intl/spoofchecker/
H A Dspoofchecker_main.c63 int s1_len, s2_len; in PHP_METHOD() local
68 &s2, &s2_len, &error_code)) { in PHP_METHOD()
74 ret = uspoof_areConfusableUTF8(co->uspoof, s1, s1_len, s2, s2_len, SPOOFCHECKER_ERROR_CODE_P(co)); in PHP_METHOD()
/PHP-5.5/Zend/
H A Dzend_builtin_functions.c497 int s1_len, s2_len; in ZEND_FUNCTION() local
499 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &s1, &s1_len, &s2, &s2_len) == FAILURE)… in ZEND_FUNCTION()
503 RETURN_LONG(zend_binary_strcmp(s1, s1_len, s2, s2_len)); in ZEND_FUNCTION()
513 int s1_len, s2_len; in ZEND_FUNCTION() local
516 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ssl", &s1, &s1_len, &s2, &s2_len, &len) == F… in ZEND_FUNCTION()
525 RETURN_LONG(zend_binary_strncmp(s1, s1_len, s2, s2_len, len)); in ZEND_FUNCTION()
535 int s1_len, s2_len; in ZEND_FUNCTION() local
537 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &s1, &s1_len, &s2, &s2_len) == FAILURE)… in ZEND_FUNCTION()
541 RETURN_LONG(zend_binary_strcasecmp(s1, s1_len, s2, s2_len)); in ZEND_FUNCTION()
551 int s1_len, s2_len; in ZEND_FUNCTION() local
[all …]
/PHP-5.5/ext/standard/
H A Dstring.c5035 int s1_len, s2_len; local
5037 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &s1, &s1_len, &s2, &s2_len) == FAILURE)…
5042 s2, s2_len,
5630 int s1_len, s2_len; local
5635 …if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ssl|lb", &s1, &s1_len, &s2, &s2_len, &offset…
5658 cmp_len = (uint) (len ? len : MAX(s2_len, (s1_len - offset)));
5661 RETURN_LONG(zend_binary_strncmp(s1 + offset, (s1_len - offset), s2, s2_len, cmp_len));
5663 RETURN_LONG(zend_binary_strncasecmp_l(s1 + offset, (s1_len - offset), s2, s2_len, cmp_len));

Completed in 22 milliseconds