Searched refs:ins_h (Results 1 - 5 of 5) sorted by relevance

/freebsd-10.2-release/lib/libz/
H A Ddeflate.c182 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
183 match_head = s->head[s->ins_h], \
184 s->head[s->ins_h] = (Pos)(str))
187 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
188 match_head = s->prev[(str) & s->w_mask] = s->head[s->ins_h], \
189 s->head[s->ins_h] = (Pos)(str))
368 UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]);
370 s->prev[str & s->w_mask] = s->head[s->ins_h];
372 s->head[s->ins_h] = (Pos)str;
1126 s->ins_h
[all...]
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
/freebsd-10.2-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Ddeflate.c190 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
191 match_head = s->head[s->ins_h], \
192 s->head[s->ins_h] = (Pos)(str))
195 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
196 match_head = s->prev[(str) & s->w_mask] = s->head[s->ins_h], \
197 s->head[s->ins_h] = (Pos)(str))
350 * s->lookahead stays null, so s->ins_h will be recomputed at the next
353 s->ins_h = s->window[0];
354 UPDATE_HASH(s, s->ins_h, s->window[1]);
1011 s->ins_h
[all...]
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
/freebsd-10.2-release/sys/net/
H A Dzlib.c393 uInt ins_h; /* hash index of string to be inserted */ member in struct:deflate_state
399 /* Number of bits by which ins_h must be shifted at each input
720 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \
721 s->prev[(str) & s->w_mask] = match_head = s->head[s->ins_h], \
722 s->head[s->ins_h] = (Pos)(str))
863 * s->lookahead stays null, so s->ins_h will be recomputed at the next
866 s->ins_h = s->window[0];
867 UPDATE_HASH(s, s->ins_h, s->window[1]);
1261 s->ins_h = 0;
1534 s->ins_h
[all...]

Completed in 69 milliseconds