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

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/lib/zlib_deflate/
H A Ddeflate.c529 s->match_length = s->prev_length = MIN_MATCH-1;
934 * At this point we have always match_length < MIN_MATCH
942 s->match_length = longest_match (s, hash_head);
946 if (s->match_length >= MIN_MATCH) {
947 check_match(s, s->strstart, s->match_start, s->match_length);
950 s->match_length - MIN_MATCH);
952 s->lookahead -= s->match_length;
957 if (s->match_length <= s->max_insert_length &&
959 s->match_length--; /* string at strstart already in hash table */
966 } while (--s->match_length !
[all...]
H A Ddefutil.h129 uInt match_length; /* length of best match */ member in struct:deflate_state
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/
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
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/
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
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/archival/
H A Dgzip.c1724 unsigned match_length = MIN_MATCH - 1; /* length of best match */ local
1735 G1.prev_length = match_length;
1737 match_length = MIN_MATCH - 1;
1746 match_length = longest_match(hash_head);
1748 if (match_length > G1.lookahead)
1749 match_length = G1.lookahead;
1752 if (match_length == MIN_MATCH && G1.strstart - G1.match_start > TOO_FAR) {
1756 match_length--;
1762 if (G1.prev_length >= MIN_MATCH && match_length <= G1.prev_length) {
1781 match_length
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/pppdump/
H A Dzlib.c274 uInt match_length; /* length of best match */ member in struct:deflate_state
919 s->match_length = MIN_MATCH-1;
1256 * At this point we have always match_length < MIN_MATCH
1264 s->match_length = longest_match (s, hash_head);
1268 if (s->match_length > s->lookahead) s->match_length = s->lookahead;
1270 if (s->match_length >= MIN_MATCH) {
1271 check_match(s, s->strstart, s->match_start, s->match_length);
1274 s->match_length - MIN_MATCH);
1276 s->lookahead -= s->match_length;
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/common/
H A Dzlib.c399 uInt match_length; /* length of best match */ member in struct:deflate_state
1248 s->match_length = s->prev_length = MIN_MATCH-1;
1653 * At this point we have always match_length < MIN_MATCH
1661 s->match_length = longest_match (s, hash_head);
1665 if (s->match_length >= MIN_MATCH) {
1666 check_match(s, s->strstart, s->match_start, s->match_length);
1669 s->match_length - MIN_MATCH);
1671 s->lookahead -= s->match_length;
1676 if (s->match_length <= s->max_insert_length &&
1678 s->match_length
[all...]

Completed in 105 milliseconds