Lines Matching full:fixed_length
8212 int fixed_length;
8214 fixed_length = find_fixedlength(last_branch, (options & PCRE_UTF8) != 0,
8216 DPRINTF(("fixed length = %d\n", fixed_length));
8217 if (fixed_length == -3)
8221 else if (fixed_length < 0)
8223 *errorcodeptr = (fixed_length == -2)? ERR36 :
8224 (fixed_length == -4)? ERR70: ERR25;
8230 if (fixed_length > cd->max_lookbehind)
8231 cd->max_lookbehind = fixed_length;
8232 PUT(reverse_count, 0, fixed_length);
9317 int fixed_length;
9321 fixed_length = find_fixedlength(cc, (re->options & PCRE_UTF8) != 0, TRUE,
9324 DPRINTF(("fixed length = %d\n", fixed_length));
9325 if (fixed_length < 0)
9327 errorcode = (fixed_length == -2)? ERR36 :
9328 (fixed_length == -4)? ERR70 : ERR25;
9331 if (fixed_length > cd->max_lookbehind) cd->max_lookbehind = fixed_length;
9332 PUT(cc, 1, fixed_length);