Home
last modified time | relevance | path

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

/PHP-7.4/ext/intl/grapheme/
H A Dgrapheme_string.c630 size_t found_offset = found - haystack; in strstr_common_handler() local
633 RETURN_STRINGL(haystack, found_offset); in strstr_common_handler()
635 RETURN_STRINGL(found, haystack_len - found_offset); in strstr_common_handler()
/PHP-7.4/ext/standard/
H A Dstring.c1834 size_t found_offset; local
1873 found_offset = found - haystack_dup;
1875 RETVAL_STRINGL(ZSTR_VAL(haystack), found_offset);
1877 RETVAL_STRINGL(ZSTR_VAL(haystack) + found_offset, ZSTR_LEN(haystack) - found_offset);
1895 zend_long found_offset; local
1926 found_offset = found - ZSTR_VAL(haystack);
1928 RETURN_STRINGL(ZSTR_VAL(haystack), found_offset);
1930 RETURN_STRINGL(found, ZSTR_LEN(haystack) - found_offset);
2259 zend_long found_offset; local
2282 found_offset = found - ZSTR_VAL(haystack);
[all …]

Completed in 22 milliseconds