/linux-4.1.27/crypto/ |
H A D | zlib.c | 151 stream->next_in = req->next_in; zlib_compress_update() 174 req->next_in = stream->next_in; zlib_compress_update() 189 stream->next_in = req->next_in; zlib_compress_final() 204 req->next_in = stream->next_in; zlib_compress_final() 265 stream->next_in = req->next_in; zlib_decompress_update() 289 req->next_in = stream->next_in; zlib_decompress_update() 304 stream->next_in = req->next_in; zlib_decompress_final() 317 const void *saved_next_in = stream->next_in; zlib_decompress_final() 320 stream->next_in = &zerostuff; zlib_decompress_final() 323 stream->next_in = saved_next_in; zlib_decompress_final() 337 req->next_in = stream->next_in; zlib_decompress_final()
|
H A D | deflate.c | 140 stream->next_in = (u8 *)src; deflate_compress() 170 stream->next_in = (u8 *)src; deflate_decompress() 183 stream->next_in = &zerostuff; deflate_decompress()
|
H A D | testmgr.c | 1295 req.next_in = ctemplate[i].input; test_pcomp() 1376 req.next_in = dtemplate[i].input; test_pcomp()
|
/linux-4.1.27/tools/perf/util/ |
H A D | zlib.c | 26 .next_in = Z_NULL, gzip_decompress_to_file() 43 zs.next_in = ptr; gzip_decompress_to_file()
|
H A D | lzma.c | 51 strm.next_in = NULL; lzma_decompress_to_file() 58 strm.next_in = buf_in; lzma_decompress_to_file()
|
/linux-4.1.27/fs/logfs/ |
H A D | compr.c | 27 stream.next_in = in; logfs_compress() 61 stream.next_in = in; logfs_uncompress()
|
/linux-4.1.27/fs/cramfs/ |
H A D | uncompress.c | 34 stream.next_in = src; cramfs_uncompress_block() 66 stream.next_in = NULL; cramfs_uncompress_init()
|
/linux-4.1.27/arch/xtensa/boot/lib/ |
H A D | zmem.c | 67 s.next_in = src + i; gunzip()
|
/linux-4.1.27/lib/ |
H A D | decompress_inflate.c | 102 strm->next_in = zbuf + 10; __gunzip() 117 } while (*strm->next_in++); __gunzip() 139 strm->next_in = zbuf; __gunzip() 169 *pos = strm->next_in - zbuf+8; __gunzip()
|
/linux-4.1.27/lib/zlib_inflate/ |
H A D | infutil.c | 27 strm->next_in = zbuf; zlib_inflate_blob()
|
H A D | inffast.c | 91 const unsigned char *in; /* local strm->next_in */ inflate_fast() 118 in = strm->next_in - OFF; inflate_fast() 339 strm->next_in = in + OFF; inflate_fast()
|
H A D | inflate.c | 170 next = strm->next_in; \ 181 strm->next_in = next; \ 339 (strm->next_in == NULL && strm->avail_in != 0)) zlib_inflate() 750 * This subroutine adds the data at next_in/avail_in to the output history 768 z->next_out = (unsigned char*)z->next_in + z->avail_in; zlib_inflateIncomp() 777 UPDATE(state->check, z->next_in, z->avail_in); zlib_inflateIncomp() 781 z->next_in += z->avail_in; zlib_inflateIncomp()
|
/linux-4.1.27/fs/btrfs/ |
H A D | zlib.c | 118 workspace->strm.next_in = data_in; zlib_compress_pages() 181 workspace->strm.next_in = data_in; zlib_compress_pages() 231 workspace->strm.next_in = data_in; zlib_decompress_biovec() 247 workspace->strm.next_in += 2; zlib_decompress_biovec() 288 workspace->strm.next_in = data_in; zlib_decompress_biovec() 323 workspace->strm.next_in = data_in; zlib_decompress() 337 workspace->strm.next_in += 2; zlib_decompress()
|
/linux-4.1.27/fs/jffs2/ |
H A D | compr_zlib.c | 89 def_strm.next_in = data_in; jffs2_zlib_compress() 150 inf_strm.next_in = data_in; jffs2_zlib_decompress() 166 inf_strm.next_in += 2; jffs2_zlib_decompress()
|
/linux-4.1.27/include/crypto/ |
H A D | compress.h | 27 const void *next_in; /* next input byte */ member in struct:comp_request 29 unsigned int avail_in; /* bytes available at next_in */
|
/linux-4.1.27/include/linux/ |
H A D | zlib.h | 85 const Byte *next_in; /* next input byte */ member in struct:z_stream_s 86 uLong avail_in; /* number of bytes available at next_in */ 106 The application must update next_in and avail_in when avail_in has 227 - Compress more input starting at next_in and update next_in and avail_in 229 enough room in the output buffer), next_in and avail_in are updated and 290 if next_in or next_out was NULL), Z_BUF_ERROR if no progress is possible 320 next_in, avail_in, and workspace must be initialized before by 321 the caller. If next_in is not NULL and avail_in is large enough (the exact 332 the zlib header if present: this will be done by inflate(). (So next_in and 347 - Decompress more input starting at next_in and update next_in and avail_in 349 enough room in the output buffer), next_in is updated and processing 377 number of unused bits in the last byte taken from strm->next_in, plus 64 426 if next_in or next_out was NULL), Z_MEM_ERROR if there was not enough memory, 462 fields next_in, zalloc, zfree and opaque must be initialized before by 517 fields next_in, avail_in, zalloc, zfree and opaque must be initialized 551 be done by inflate(). (So next_in and avail_in may be modified, but next_out 567 This function adds the data at next_in (avail_in bytes) to the output 571 containing the data at next_in (except that the data is not output).
|
/linux-4.1.27/arch/powerpc/boot/ |
H A D | gunzip_util.c | 82 state->s.next_in = src + hdrlen; gunzip_start() 119 memcpy(dst, state->s.next_in, len); gunzip_partial() 120 state->s.next_in += len; gunzip_partial()
|
/linux-4.1.27/fs/squashfs/ |
H A D | zlib_wrapper.c | 80 stream->next_in = bh[k]->b_data + offset; zlib_uncompress()
|
/linux-4.1.27/drivers/net/ppp/ |
H A D | ppp_deflate.c | 108 state->strm.next_in = NULL; z_comp_alloc() 225 state->strm.next_in = rptr; z_compress() 452 state->strm.next_in = ibuf + PPP_HDRLEN + DEFLATE_OVHD; z_decompress() 538 state->strm.next_in = ibuf + 3; z_incomp() 541 --state->strm.next_in; z_incomp()
|
/linux-4.1.27/net/tipc/ |
H A D | bcast.c | 432 u32 next_in; tipc_bclink_rcv() local 474 next_in = mod(node->bclink.last_in + 1); tipc_bclink_rcv() 478 if (likely(seqno == next_in)) { tipc_bclink_rcv() 545 next_in = mod(next_in + 1); tipc_bclink_rcv() 546 if (seqno != next_in) tipc_bclink_rcv() 555 if (less(next_in, seqno)) { tipc_bclink_rcv()
|
/linux-4.1.27/lib/zlib_deflate/ |
H A D | deflate.c | 341 if ((strm->next_in == NULL && strm->avail_in != 0) || zlib_deflate() 490 * allocating a large strm->next_in buffer and copying from it. 507 strm->adler = zlib_adler32(strm->adler, strm->next_in, len); read_buf() 509 memcpy(buf, strm->next_in, len); read_buf() 510 strm->next_in += len; read_buf()
|
/linux-4.1.27/fs/pstore/ |
H A D | platform.c | 144 stream.next_in = in; pstore_compress() 177 stream.next_in = in; pstore_decompress()
|
/linux-4.1.27/fs/isofs/ |
H A D | compress.c | 137 stream.next_in = bhs[curbh]->b_data + zisofs_uncompress_block()
|
/linux-4.1.27/fs/ |
H A D | binfmt_flat.c | 212 strm.next_in = buf; decompress_exec() 268 strm.next_in += ret; decompress_exec() 286 strm.next_in = buf; decompress_exec()
|
/linux-4.1.27/arch/powerpc/kernel/ |
H A D | nvram_64.c | 343 stream.next_in = in; nvram_compress()
|
/linux-4.1.27/drivers/net/ethernet/broadcom/bnx2x/ |
H A D | bnx2x_main.c | 6570 bp->strm->next_in = (typeof(bp->strm->next_in))zbuf + n; bnx2x_gunzip()
|