Searched defs:ins_h (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/zmod/
H A Ddeflate.h136 uInt ins_h; /* hash index of string to be inserted */ member in struct:internal_state
142 /* Number of bits by which ins_h must be shifted at each input
/illumos-gate/usr/src/boot/lib/libz/
H A Ddeflate.h139 uInt ins_h; /* hash index of string to be inserted */ member in struct:internal_state
145 /* Number of bits by which ins_h must be shifted at each input
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.c257 uInt ins_h; /* hash index of string to be inserted */ member in struct:deflate_state
263 /* Number of bits by which ins_h must be shifted at each input
566 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
567 s->prev[(str) & s->w_mask] = match_head = s->head[s->ins_h], \
568 s->head[s->ins_h] = (str))
921 s->ins_h = 0;
1187 s->ins_h = s->window[s->strstart];
1188 UPDATE_HASH(s, s->ins_h, s->window[s->strstart+1]);
1193 /* If the whole input has less than MIN_MATCH bytes, ins_h is garbage,
1295 s->ins_h
[all...]
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Dzlib.c410 uInt ins_h; /* hash index of string to be inserted */ member in struct:deflate_state
417 * Number of bits by which ins_h must be shifted at each input
816 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
817 match_head = s->head[s->ins_h], \
818 s->head[s->ins_h] = (Pos)(str))
821 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
822 s->prev[(str) & s->w_mask] = match_head = s->head[s->ins_h], \
823 s->head[s->ins_h] = (Pos)(str))
982 * two bytes). s->lookahead stays null, so s->ins_h will be
985 s->ins_h
[all...]

Completed in 93 milliseconds