Searched refs:window (Results 1 – 7 of 7) sorted by relevance
/lib/zlib_deflate/ |
D | deflate.c | 154 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \ 232 s->window = (Byte *) mem->window_memory; in zlib_deflateInit2() 560 register Byte *scan = s->window + s->strstart; /* current string */ in longest_match() 577 register Byte *strend = s->window + s->strstart + MAX_MATCH - 1; in longest_match() 581 register Byte *strend = s->window + s->strstart + MAX_MATCH; in longest_match() 604 match = s->window + cur_match; in longest_match() 636 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan"); in longest_match() 668 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan"); in longest_match() 705 if (memcmp((char *)s->window + match, in check_match() 706 (char *)s->window + start, length) != EQUAL) { in check_match() [all …]
|
D | defutil.h | 89 Byte *window; member
|
/lib/zlib_inflate/ |
D | inffast.c | 81 unsigned char *window; /* allocated sliding window, if wsize != 0 */ in inflate_fast() local 108 window = state->window; in inflate_fast() 187 from = window; in inflate_fast() 206 from = window; in inflate_fast()
|
D | inflate.c | 69 state->window = &WS(strm)->working_window[0]; in zlib_inflateInit2() 111 memcpy(state->window, strm->next_out - state->wsize, state->wsize); in zlib_updatewindow() 118 memcpy(state->window + state->write, strm->next_out - copy, dist); in zlib_updatewindow() 121 memcpy(state->window, strm->next_out - copy, copy); in zlib_updatewindow() 665 from = state->window + (state->wsize - copy); in zlib_inflate() 668 from = state->window + (state->write - copy); in zlib_inflate()
|
D | inflate.h | 87 unsigned char *window; /* allocated sliding window, if needed */ member
|
/lib/ |
D | decompress_inflate.c | 128 WS(strm)->inflate_state.window = NULL; in __gunzip()
|
D | inflate.c | 130 #define slide window
|