Home
last modified time | relevance | path

Searched refs:found_offset (Results 1 – 2 of 2) sorted by relevance

/PHP-7.0/ext/intl/grapheme/
H A Dgrapheme_string.c628 size_t found_offset = found - haystack; in strstr_common_handler() local
631 RETURN_STRINGL(haystack, found_offset); in strstr_common_handler()
633 RETURN_STRINGL(found, haystack_len - found_offset); in strstr_common_handler()
/PHP-7.0/ext/standard/
H A Dstring.c1814 size_t found_offset; local
1846 found_offset = found - haystack_dup;
1848 RETVAL_STRINGL(ZSTR_VAL(haystack), found_offset);
1850 RETVAL_STRINGL(ZSTR_VAL(haystack) + found_offset, ZSTR_LEN(haystack) - found_offset);
1868 zend_long found_offset; local
1892 found_offset = found - ZSTR_VAL(haystack);
1894 RETURN_STRINGL(ZSTR_VAL(haystack), found_offset);
1896 RETURN_STRINGL(found, ZSTR_LEN(haystack) - found_offset);
2197 zend_long found_offset; local
2215 found_offset = found - ZSTR_VAL(haystack);
[all …]

Completed in 25 milliseconds