Lines Matching refs:fixed_length
7771 int fixed_length; in compile_regex() local
7774 fixed_length = find_fixedlength(last_branch, (options & PCRE2_UTF) != 0, in compile_regex()
7776 if (fixed_length == FFL_LATER) in compile_regex()
7780 else if (fixed_length < 0) in compile_regex()
7782 *errorcodeptr = fixed_length_errors[-fixed_length]; in compile_regex()
7788 if (fixed_length > cb->max_lookbehind) in compile_regex()
7789 cb->max_lookbehind = fixed_length; in compile_regex()
7790 PUT(reverse_count, 0, fixed_length); in compile_regex()
8908 int fixed_length; in pcre2_compile() local
8913 fixed_length = find_fixedlength(cc, utf, TRUE, &cb, NULL, &count); in pcre2_compile()
8915 if (fixed_length < 0) in pcre2_compile()
8917 errorcode = fixed_length_errors[-fixed_length]; in pcre2_compile()
8920 if (fixed_length > cb.max_lookbehind) cb.max_lookbehind = fixed_length; in pcre2_compile()
8921 PUT(cc, 1, fixed_length); in pcre2_compile()