Lines Matching refs:offset

258 	ZEND_ARG_INFO(0, offset)
265 ZEND_ARG_INFO(0, offset)
272 ZEND_ARG_INFO(0, offset)
279 ZEND_ARG_INFO(0, offset)
2520 zend_long offset = 0; in PHP_FUNCTION() local
2525 …har **)&haystack.val, &haystack.len, (char **)&needle.val, &needle.len, &offset, &enc_name) == FAI… in PHP_FUNCTION()
2535 if (offset != 0) { in PHP_FUNCTION()
2537 if (offset < 0) { in PHP_FUNCTION()
2538 offset += slen; in PHP_FUNCTION()
2540 if (offset < 0 || offset > slen) { in PHP_FUNCTION()
2551 n = mbfl_strpos(&haystack, &needle, offset, reverse); in PHP_FUNCTION()
2583 zend_long offset = 0, n; in PHP_FUNCTION() local
2606 offset = Z_LVAL_P(zoffset); in PHP_FUNCTION()
2617 offset = Z_LVAL_P(zoffset); in PHP_FUNCTION()
2627 if (offset != 0) { in PHP_FUNCTION()
2629 if ((offset > 0 && offset > haystack_char_len) || in PHP_FUNCTION()
2630 (offset < 0 && -offset > haystack_char_len)) { in PHP_FUNCTION()
2636 n = mbfl_strpos(&haystack, &needle, offset, 1); in PHP_FUNCTION()
2650 zend_long offset = 0; in PHP_FUNCTION() local
2654 …har **)&haystack.val, &haystack.len, (char **)&needle.val, &needle.len, &offset, &from_encoding) =… in PHP_FUNCTION()
2663 …n = php_mb_stripos(0, (char *)haystack.val, haystack.len, (char *)needle.val, needle.len, offset, … in PHP_FUNCTION()
2678 zend_long offset = 0; in PHP_FUNCTION() local
2682 …har **)&haystack.val, &haystack.len, (char **)&needle.val, &needle.len, &offset, &from_encoding) =… in PHP_FUNCTION()
2686 …n = php_mb_stripos(1, (char *)haystack.val, haystack.len, (char *)needle.val, needle.len, offset, … in PHP_FUNCTION()
5311 …d_haystack_len, const char *old_needle, size_t old_needle_len, zend_long offset, zend_string *from… in php_mb_stripos() argument
5356 if (offset != 0) { in php_mb_stripos()
5360 if ((offset > 0 && (size_t)offset > haystack_char_len) || in php_mb_stripos()
5361 (offset < 0 && (size_t)(-offset) > haystack_char_len)) { in php_mb_stripos()
5366 if (offset < 0) { in php_mb_stripos()
5367 offset += (zend_long)haystack_char_len; in php_mb_stripos()
5369 if (offset < 0 || (size_t)offset > haystack_char_len) { in php_mb_stripos()
5376 n = mbfl_strpos(&haystack, &needle, offset, mode); in php_mb_stripos()