Home
last modified time | relevance | path

Searched refs:cur_match (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/contrib/zlib/
H A Ddeflate.c91 uInt longest_match OF((deflate_state *s, IPos cur_match));
93 local uInt longest_match OF((deflate_state *s, IPos cur_match));
1274 local uInt longest_match(s, cur_match) in longest_match() argument
1322 Assert(cur_match < s->strstart, "no future");
1323 match = s->window + cur_match;
1400 s->match_start = cur_match;
1410 } while ((cur_match = prev[cur_match & wmask]) > limit
1423 local uInt longest_match(s, cur_match) in longest_match() argument
1439 Assert(cur_match < s->strstart, "no future");
1441 match = s->window + cur_match;
[all …]
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Dzlib.c1451 longest_match(s, cur_match) in longest_match() argument
1453 IPos cur_match; /* current match */
1506 Assert(cur_match <= s->strstart, "no future");
1507 match = s->window + cur_match;
1593 s->match_start = cur_match;
1603 } while ((cur_match = prev[cur_match & wmask]) > limit &&
1616 longest_match(s, cur_match) in longest_match() argument
1618 IPos cur_match; /* current match */
1635 Assert(cur_match <= s->strstart, "no future");
1637 match = s->window + cur_match;
[all …]
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.c534 local int longest_match OF((deflate_state *s, IPos cur_match));
939 local int longest_match(s, cur_match) in longest_match() argument
941 IPos cur_match; /* current match */
981 Assert(cur_match < s->strstart, "no future");
982 match = s->window + cur_match;
1054 s->match_start = cur_match;
1064 } while ((cur_match = prev[cur_match & wmask]) > limit