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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
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
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
H A Ddeflate.c1003 s->match_length = s->prev_length = MIN_MATCH-1;
1477 * At this point we have always match_length < MIN_MATCH
1487 s->match_length = longest_match_fast (s, hash_head);
1491 s->match_length = longest_match (s, hash_head);
1493 s->match_length = longest_match_fast (s, hash_head);
1498 if (s->match_length >= MIN_MATCH) {
1499 check_match(s, s->strstart, s->match_start, s->match_length);
1502 s->match_length - MIN_MATCH, bflush);
1504 s->lookahead -= s->match_length;
1510 if (s->match_length <
[all...]
H A Ddeflate.h153 uInt match_length; /* length of best match */ member in struct:internal_state

Completed in 131 milliseconds