Searched refs:window (Results 1 – 10 of 10) sorted by relevance
/lib/zlib_deflate/ |
D | deflate.c | 175 (UPDATE_HASH(s, s->ins_h, s->window[(str) + (MIN_MATCH-1)]), \ 261 s->window = (Byte *) mem->window_memory; in zlib_deflateInit2() 564 register Byte *scan = s->window + s->strstart; /* current string */ in longest_match() 581 register Byte *strend = s->window + s->strstart + MAX_MATCH - 1; in longest_match() 585 register Byte *strend = s->window + s->strstart + MAX_MATCH; in longest_match() 608 match = s->window + cur_match; in longest_match() 640 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan"); in longest_match() 672 Assert(scan <= s->window+(unsigned)(s->window_size-1), "wild scan"); in longest_match() 709 if (memcmp((char *)s->window + match, in check_match() 710 (char *)s->window + start, length) != EQUAL) { in check_match() [all …]
|
D | defutil.h | 91 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 | 85 state->window = PTR_ALIGN(&WS(strm)->working_window[0], PAGE_SIZE); in zlib_inflateInit2() 87 state->window = &WS(strm)->working_window[0]; in zlib_inflateInit2() 130 memcpy(state->window, strm->next_out - state->wsize, state->wsize); in zlib_updatewindow() 137 memcpy(state->window + state->write, strm->next_out - copy, dist); in zlib_updatewindow() 140 memcpy(state->window, strm->next_out - copy, copy); in zlib_updatewindow() 680 from = state->window + (state->wsize - copy); in zlib_inflate() 683 from = state->window + (state->write - copy); in zlib_inflate()
|
D | inflate.h | 89 unsigned char *window; /* allocated sliding window, if needed */ member
|
/lib/zlib_dfltcc/ |
D | dfltcc_inflate.c | 77 &strm->next_in, &avail_in, state->window); in dfltcc_xpnd() 116 if (!state->window || state->wsize == 0) { in dfltcc_inflate()
|
D | dfltcc_deflate.c | 65 &strm->next_in, &avail_in, state->window); in dfltcc_cmpr()
|
/lib/ |
D | decompress_inflate.c | 140 WS(strm)->inflate_state.window = NULL; in __gunzip()
|
D | Kconfig.kcsan | 165 Any given race is only reported once in the defined time window.
|
D | inflate.c | 130 #define slide window
|