Searched refs:minlength (Results 1 – 8 of 8) sorted by relevance
/PHP-8.0/ext/pcre/pcre2lib/ |
H A D | pcre2_pattern_info.c | 221 *((uint32_t *)where) = re->minlength; in pcre2_pattern_info()
|
H A D | pcre2_intmodedep.h | 637 uint16_t minlength; /* Minimum length of match */ member
|
H A D | pcre2_study.c | 1817 re->minlength = (min > UINT16_MAX)? UINT16_MAX : min; in PRIV()
|
H A D | pcre2_compile.c | 10157 re->minlength = 0; in pcre2_compile() 10458 if (re->minlength < minminlength) re->minlength = minminlength; in pcre2_compile()
|
H A D | pcre2_dfa_match.c | 3803 if (end_subject - start_match < re->minlength) goto NOMATCH_EXIT; in pcre2_dfa_match()
|
H A D | pcre2_match.c | 6935 if (end_subject - start_match < re->minlength) in pcre2_match()
|
H A D | pcre2_jit_compile.c | 13438 common->might_be_empty = (re->minlength == 0) || (re->flags & PCRE2_MATCH_EMPTY); in jit_compile() 13666 if (mode == PCRE2_JIT_COMPLETE && re->minlength > 0 && (re->overall_options & PCRE2_NO_START_OPTIMI… in jit_compile() 13669 OP2(SLJIT_ADD, TMP2, 0, STR_PTR, 0, SLJIT_IMM, IN_UCHARS(re->minlength)); in jit_compile()
|
/PHP-8.0/ext/mysqli/ |
H A D | mysqli_nonapi.c | 1061 uint32_t minlength, maxlength, number, state; local 1079 minlength = cs.mbminlen; 1092 minlength = cs->char_minlen; 1103 add_property_long(return_value, "min_length", minlength);
|
Completed in 108 milliseconds