/linux-4.1.27/crypto/ |
H A D | zlib.c | 153 stream->next_out = req->next_out; zlib_compress_update() 176 req->next_out = stream->next_out; zlib_compress_update() 191 stream->next_out = req->next_out; zlib_compress_final() 206 req->next_out = stream->next_out; zlib_compress_final() 267 stream->next_out = req->next_out; zlib_decompress_update() 291 req->next_out = stream->next_out; zlib_decompress_update() 306 stream->next_out = req->next_out; zlib_decompress_final() 339 req->next_out = stream->next_out; zlib_decompress_final()
|
H A D | deflate.c | 142 stream->next_out = (u8 *)dst; deflate_compress() 172 stream->next_out = (u8 *)dst; deflate_decompress()
|
H A D | testmgr.c | 1297 req.next_out = result; test_pcomp() 1378 req.next_out = result; test_pcomp()
|
/linux-4.1.27/arch/xtensa/boot/lib/ |
H A D | zmem.c | 69 s.next_out = dst; gunzip() 76 *lenp = s.next_out - (unsigned char *) dst; gunzip()
|
/linux-4.1.27/fs/logfs/ |
H A D | compr.c | 30 stream.next_out = out; logfs_compress() 64 stream.next_out = out; logfs_uncompress()
|
/linux-4.1.27/tools/perf/util/ |
H A D | lzma.c | 53 strm.next_out = buf_out; lzma_decompress_to_file() 80 strm.next_out = buf_out; lzma_decompress_to_file()
|
H A D | zlib.c | 47 zs.next_out = buf; gzip_decompress_to_file()
|
/linux-4.1.27/fs/squashfs/ |
H A D | zlib_wrapper.c | 73 stream->next_out = squashfs_first_page(output); zlib_uncompress() 86 stream->next_out = squashfs_next_page(output); zlib_uncompress() 87 if (stream->next_out != NULL) zlib_uncompress()
|
/linux-4.1.27/lib/ |
H A D | decompress_inflate.c | 120 strm->next_out = out_buf; __gunzip() 145 if (flush && strm->next_out > out_buf) { __gunzip() 146 long l = strm->next_out - out_buf; __gunzip() 152 strm->next_out = out_buf; __gunzip()
|
/linux-4.1.27/lib/zlib_inflate/ |
H A D | infutil.c | 29 strm->next_out = gunzip_buf; zlib_inflate_blob()
|
H A D | inffast.c | 93 unsigned char *out; /* local strm->next_out */ inflate_fast() 94 unsigned char *beg; /* inflate()'s initial strm->next_out */ inflate_fast() 120 out = strm->next_out - OFF; inflate_fast() 340 strm->next_out = out + OFF; inflate_fast()
|
H A D | inflate.c | 111 memcpy(state->window, strm->next_out - state->wsize, state->wsize); zlib_updatewindow() 118 memcpy(state->window + state->write, strm->next_out - copy, dist); zlib_updatewindow() 121 memcpy(state->window, strm->next_out - copy, copy); zlib_updatewindow() 168 put = strm->next_out; \ 179 strm->next_out = put; \ 308 strm->next_out, given the space available and the provided input--the effect 335 /* Do not check for strm->next_out == NULL here as ppc zImage zlib_inflate() 336 inflates to strm->next_out = 0 */ zlib_inflate() 727 UPDATE(state->check, strm->next_out - out, out); zlib_inflate() 760 Byte *saved_no = z->next_out; zlib_inflateIncomp() 768 z->next_out = (unsigned char*)z->next_in + z->avail_in; zlib_inflateIncomp() 774 z->next_out = saved_no; zlib_inflateIncomp()
|
/linux-4.1.27/fs/btrfs/ |
H A D | zlib.c | 119 workspace->strm.next_out = cpage_out; zlib_compress_pages() 160 workspace->strm.next_out = cpage_out; zlib_compress_pages() 236 workspace->strm.next_out = workspace->buf; zlib_decompress_biovec() 276 workspace->strm.next_out = workspace->buf; zlib_decompress_biovec() 327 workspace->strm.next_out = workspace->buf; zlib_decompress() 382 workspace->strm.next_out = workspace->buf; zlib_decompress()
|
/linux-4.1.27/include/crypto/ |
H A D | compress.h | 28 void *next_out; /* next output byte */ member in struct:comp_request 30 unsigned int avail_out; /* bytes available at next_out */
|
/linux-4.1.27/fs/cramfs/ |
H A D | uncompress.c | 37 stream.next_out = dst; cramfs_uncompress_block()
|
/linux-4.1.27/fs/jffs2/ |
H A D | compr_zlib.c | 92 def_strm.next_out = cpage_out; jffs2_zlib_compress() 154 inf_strm.next_out = cpage_out; jffs2_zlib_decompress()
|
/linux-4.1.27/drivers/net/ppp/ |
H A D | ppp_deflate.c | 219 state->strm.next_out = wptr; z_compress() 238 state->strm.next_out = NULL; z_compress() 325 state->strm.next_out = NULL; z_decomp_alloc() 454 state->strm.next_out = obuf + 3; z_decompress() 477 --state->strm.next_out; z_decompress() 487 state->strm.next_out = overflow_buf; z_decompress()
|
/linux-4.1.27/include/linux/ |
H A D | zlib.h | 89 Byte *next_out; /* next output byte should be put there */ member in struct:z_stream_s 90 uLong avail_out; /* remaining free space at next_out */ 107 dropped to zero. It must update next_out and avail_out when avail_out 232 - Provide more output starting at next_out and update next_out and avail_out 290 if next_in or next_out was NULL), Z_BUF_ERROR if no progress is possible 333 avail_in may be modified, but next_out and avail_out are unchanged.) 352 - Provide more output starting at next_out and update next_out and avail_out 382 uncompressed data from that block has been written to strm->next_out. The 426 if next_in or next_out was NULL), Z_MEM_ERROR if there was not enough memory, 551 be done by inflate(). (So next_in and avail_in may be modified, but next_out
|
/linux-4.1.27/arch/powerpc/boot/ |
H A D | gunzip_util.c | 110 state->s.next_out = dst; gunzip_partial() 115 len = state->s.next_out - (Byte *)dst; gunzip_partial()
|
/linux-4.1.27/fs/isofs/ |
H A D | compress.c | 122 stream.next_out = page_address(pages[curpage]) zisofs_uncompress_block() 127 stream.next_out = (void *)&zisofs_sink_page; zisofs_uncompress_block()
|
/linux-4.1.27/fs/pstore/ |
H A D | platform.c | 147 stream.next_out = out; pstore_compress() 180 stream.next_out = out; pstore_decompress()
|
/linux-4.1.27/lib/zlib_deflate/ |
H A D | deflate.c | 300 * to avoid allocating a large strm->next_out buffer and copying into it. 313 if (strm->next_out != NULL) { flush_pending() 314 memcpy(strm->next_out, s->pending_out, len); flush_pending() 315 strm->next_out += len; flush_pending()
|
/linux-4.1.27/net/tipc/ |
H A D | link.h | 138 * @next_out: ptr to first unsent outbound message in queue
|
/linux-4.1.27/arch/powerpc/kernel/ |
H A D | nvram_64.c | 346 stream.next_out = out; nvram_compress()
|
/linux-4.1.27/fs/ |
H A D | binfmt_flat.c | 271 strm.next_out = dst; decompress_exec()
|
/linux-4.1.27/drivers/net/ethernet/broadcom/bnx2x/ |
H A D | bnx2x_main.c | 6572 bp->strm->next_out = bp->gunzip_buf; bnx2x_gunzip()
|