Home
last modified time | relevance | path

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

/PHP-8.2/ext/pcre/pcre2lib/
H A Dpcre2_substitute.c232 pcre2_match_data *internal_match_data = NULL; in pcre2_substitute() local
295 match_data = internal_match_data = in pcre2_substitute()
297 if (internal_match_data == NULL) return PCRE2_ERROR_NOMEMORY; in pcre2_substitute()
307 internal_match_data = pcre2_match_data_create(match_data->oveccount, in pcre2_substitute()
309 if (internal_match_data == NULL) return PCRE2_ERROR_NOMEMORY; in pcre2_substitute()
310 memcpy(internal_match_data, match_data, offsetof(pcre2_match_data, ovector) in pcre2_substitute()
312 match_data = internal_match_data; in pcre2_substitute()
986 if (internal_match_data != NULL) pcre2_match_data_free(internal_match_data); in pcre2_substitute()

Completed in 17 milliseconds