Lines Matching refs:s2
640 zend_string *s1, *s2; in PHP_FUNCTION() local
644 Z_PARAM_STR(s2) in PHP_FUNCTION()
648 (const char *) ZSTR_VAL(s2))); in PHP_FUNCTION()
1654 PHPAPI size_t php_strspn(const char *s1, const char *s2, const char *s1_end, const char *s2_end) argument
1660 for (spanp = s2; p != s1_end && spanp != s2_end;) {
1671 PHPAPI size_t php_strcspn(const char *s1, const char *s2, const char *s1_end, const char *s2_end) argument
1677 spanp = s2;
3850 uint8x16_t s2 = vceqq_u8(x, vdupq_n_u8('\"')); local
3853 uint8x16_t s23 = vorrq_u8(s2, s3);
5362 zend_string *s1, *s2; local
5366 Z_PARAM_STR(s2)
5370 ZSTR_VAL(s2), ZSTR_LEN(s2),
5931 zend_string *s1, *s2; local
5939 Z_PARAM_STR(s2)
5965 cmp_len = len ? (size_t)len : MAX(ZSTR_LEN(s2), (ZSTR_LEN(s1) - offset));
5968 …nary_strncmp(ZSTR_VAL(s1) + offset, (ZSTR_LEN(s1) - offset), ZSTR_VAL(s2), ZSTR_LEN(s2), cmp_len));
5970 …trncasecmp_l(ZSTR_VAL(s1) + offset, (ZSTR_LEN(s1) - offset), ZSTR_VAL(s2), ZSTR_LEN(s2), cmp_len));