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

/freebsd-10.1-release/contrib/pam_modules/pam_passwdqc/
H A Dpasswdqc.h13 int match_length; member in struct:__anon4280
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-10.1-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-10.1-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-10.1-release/contrib/subversion/subversion/libsvn_delta/
H A Dxdelta.c231 match_length(const char *a, const char *b, apr_size_t max_len)
327 delta = match_length(a + apos + MATCH_BLOCKSIZE,
418 lo = match_length(a, b, asize > bsize ? bsize : asize);
230 match_length(const char *a, const char *b, apr_size_t max_len) function
/freebsd-10.1-release/sys/net/
H A Dzlib.c410 uInt match_length; /* length of best match */ member in struct:deflate_state
1259 s->match_length = s->prev_length = MIN_MATCH-1;
1664 * At this point we have always match_length < MIN_MATCH
1672 s->match_length = longest_match (s, hash_head);
1676 if (s->match_length >= MIN_MATCH) {
1677 check_match(s, s->strstart, s->match_start, s->match_length);
1680 s->match_length - MIN_MATCH);
1682 s->lookahead -= s->match_length;
1687 if (s->match_length <= s->max_insert_length &&
1689 s->match_length
[all...]

Completed in 73 milliseconds