Searched refs:cur_match (Results 1 – 3 of 3) sorted by relevance
/titanic_50/usr/src/uts/common/zmod/ |
H A D | deflate.c | 94 uInt longest_match OF((deflate_state *s, IPos cur_match)); 96 local uInt longest_match OF((deflate_state *s, IPos cur_match)); 99 local uInt longest_match_fast OF((deflate_state *s, IPos cur_match)); 1033 local uInt longest_match(s, cur_match) in longest_match() argument 1035 IPos cur_match; /* current match */ 1081 Assert(cur_match < s->strstart, "no future"); 1082 match = s->window + cur_match; 1159 s->match_start = cur_match; 1169 } while ((cur_match = prev[cur_match & wmask]) > limit 1181 local uInt longest_match_fast(s, cur_match) in longest_match_fast() argument [all …]
|
/titanic_50/usr/src/uts/common/io/ppp/spppcomp/ |
H A D | zlib.c | 723 uInt longest_match OF((deflate_state *s, IPos cur_match)); 725 local uInt longest_match OF((deflate_state *s, IPos cur_match)); 1453 longest_match(s, cur_match) in longest_match() argument 1455 IPos cur_match; /* current match */ 1508 Assert(cur_match <= s->strstart, "no future"); 1509 match = s->window + cur_match; 1595 s->match_start = cur_match; 1605 } while ((cur_match = prev[cur_match & wmask]) > limit && 1618 longest_match(s, cur_match) in longest_match() argument 1620 IPos cur_match; /* current match */ [all …]
|
/titanic_50/usr/src/cmd/cmd-inet/usr.bin/pppdump/ |
H A D | zlib.c | 534 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
|