Searched refs:match_length (Results 1 - 8 of 8) sorted by relevance

/freebsd-9.3-release/contrib/pam_modules/pam_passwdqc/
H A Dpasswdqc.h13 int match_length; member in struct:__anon4016
H A Dpasswdqc_check.c204 if (!params->match_length) /* disabled */
207 if (params->match_length < 0) /* misconfigured */
216 for (i = 0; i <= length - params->match_length; i++)
217 for (j = params->match_length; i + j <= length; j++) {
264 if ((int)strlen(word) < params->match_length) continue;
H A Dpam_passwdqc.c68 4, /* match_length */
232 params->qc.match_length = v;
/freebsd-9.3-release/lib/libz/
H A Ddeflate.c383 s->match_length = s->prev_length = MIN_MATCH-1;
1124 s->match_length = s->prev_length = MIN_MATCH-1;
1658 * At this point we have always match_length < MIN_MATCH
1665 s->match_length = longest_match (s, hash_head);
1668 if (s->match_length >= MIN_MATCH) {
1669 check_match(s, s->strstart, s->match_start, s->match_length);
1672 s->match_length - MIN_MATCH, bflush);
1674 s->lookahead -= s->match_length;
1680 if (s->match_length <= s->max_insert_length &&
1682 s->match_length
[all...]
H A Ddeflate.h156 uInt match_length; /* length of best match */ member in struct:internal_state
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Ddeflate.c1009 s->match_length = s->prev_length = MIN_MATCH-1;
1483 * At this point we have always match_length < MIN_MATCH
1493 s->match_length = longest_match_fast (s, hash_head);
1497 s->match_length = longest_match (s, hash_head);
1499 s->match_length = longest_match_fast (s, hash_head);
1504 if (s->match_length >= MIN_MATCH) {
1505 check_match(s, s->strstart, s->match_start, s->match_length);
1508 s->match_length - MIN_MATCH, bflush);
1510 s->lookahead -= s->match_length;
1516 if (s->match_length <
[all...]
H A Ddeflate.h153 uInt match_length; /* length of best match */ member in struct:internal_state
/freebsd-9.3-release/sys/net/
H A Dzlib.c403 uInt match_length; /* length of best match */ member in struct:deflate_state
1252 s->match_length = s->prev_length = MIN_MATCH-1;
1657 * At this point we have always match_length < MIN_MATCH
1665 s->match_length = longest_match (s, hash_head);
1669 if (s->match_length >= MIN_MATCH) {
1670 check_match(s, s->strstart, s->match_start, s->match_length);
1673 s->match_length - MIN_MATCH);
1675 s->lookahead -= s->match_length;
1680 if (s->match_length <= s->max_insert_length &&
1682 s->match_length
[all...]

Completed in 168 milliseconds