Home
last modified time | relevance | path

Searched refs:pending_out (Results 1 – 6 of 6) sorted by relevance

/OK3568_Linux_fs/kernel/lib/zlib_deflate/
H A Ddefutil.h78 Byte *pending_out; /* next pending byte to output to the stream */ member
430 memcpy(strm->next_out, s->pending_out, len); in flush_pending()
433 s->pending_out += len; in flush_pending()
438 s->pending_out = s->pending_buf; in flush_pending()
H A Ddeflate.c297 s->pending_out = s->pending_buf; in zlib_deflateReset()
/OK3568_Linux_fs/kernel/lib/zlib_dfltcc/
H A Ddfltcc_deflate.c92 memmove(state->pending_buf, state->pending_out, state->pending); in send_eobs()
93 state->pending_out = state->pending_buf; in send_eobs()
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/zlib/zlib/
H A DCVE-2018-25032.patch121 - if ((Bytef *)(s->d_buf) < s->pending_out + ((Buf_size + 7) >> 3))
122 + if (s->sym_buf < s->pending_out + ((Buf_size + 7) >> 3))
147 ds->pending_out = ds->pending_buf + (ss->pending_out - ss->pending_buf);
/OK3568_Linux_fs/u-boot/lib/zlib/
H A Ddeflate.c369 s->pending_out = s->pending_buf;
570 zmemcpy(strm->next_out, strm->state->pending_out, len);
572 strm->state->pending_out += len;
577 strm->state->pending_out = strm->state->pending_buf;
971 ds->pending_out = ds->pending_buf + (ss->pending_out - ss->pending_buf);
H A Ddeflate.h99 Bytef *pending_out; /* next pending byte to output to the stream */ member