| /f-stack/freebsd/contrib/zlib/test/ |
| H A D | infcover.c | 295 strm.next_in = Z_NULL; in inf() 316 strm.next_in = in; in inf() 357 strm.next_in = Z_NULL; in cover_support() 375 strm.next_in = Z_NULL; in cover_support() 381 strm.next_in = Z_NULL; in cover_support() 415 strm.next_in = Z_NULL; in cover_wrap() 418 strm.next_in = (void *)"\x63"; in cover_wrap() 431 strm.next_in = (void *)"\x80"; in cover_wrap() 533 strm.next_in = Z_NULL; in try() 537 strm.next_in = in; in try() [all …]
|
| H A D | example.c | 215 c_stream.next_in = (z_const unsigned char *)hello; 251 d_stream.next_in = compr; 299 c_stream.next_in = uncompr; 310 c_stream.next_in = compr; 317 c_stream.next_in = uncompr; 347 d_stream.next_in = compr; 390 c_stream.next_in = (z_const unsigned char *)hello; 426 d_stream.next_in = compr; 479 c_stream.next_in = (z_const unsigned char *)hello; 507 d_stream.next_in = compr;
|
| H A D | minigzip.c | 214 gz->strm.next_in = 0; 247 strm->next_in = (void *)buf; 281 strm->next_in = in; 307 strm->next_in = Z_NULL;
|
| /f-stack/freebsd/contrib/zlib/ |
| H A D | gzwrite.c | 55 strm->next_in = NULL; 98 strm->next_in += writ; 170 strm->next_in = state->in; 210 state->strm.next_in = state->in; 231 state->strm.next_in = (z_const Bytef *)buf; 337 strm->next_in = state->in; 415 strm->next_in = state->in; in gzvprintf() 448 strm->next_in = state->in; in gzvprintf() 509 strm->next_in = state->in; 510 next = (char *)(strm->next_in + strm->avail_in); [all …]
|
| H A D | gzread.c | 70 unsigned const char *q = strm->next_in; 80 strm->next_in = state->in; 117 state->strm.next_in = Z_NULL; 143 strm->next_in[0] == 31 && strm->next_in[1] == 139) { 164 memcpy(state->x.next, strm->next_in, strm->avail_in);
|
| H A D | infback.c | 132 next = strm->next_in; \ 143 strm->next_in = next; \ 282 next = strm->next_in; 626 strm->next_in = next;
|
| H A D | inffast.c | 82 in = strm->next_in; 299 strm->next_in = in;
|
| H A D | compress.c | 46 stream.next_in = (z_const Bytef *)source;
|
| H A D | uncompr.c | 49 stream.next_in = (z_const Bytef *)source;
|
| /f-stack/freebsd/contrib/zstd/zlibWrapper/ |
| H A D | gzwrite.c | 57 strm->next_in = NULL; 100 strm->next_in += writ; 172 strm->next_in = state.state->in; 212 state.state->strm.next_in = state.state->in; 233 state.state->strm.next_in = (z_const Bytef *)buf; 340 strm->next_in = state.state->in; 418 strm->next_in = state.state->in; in gzvprintf() 451 strm->next_in = state.state->in; in gzvprintf() 512 strm->next_in = state.state->in; 513 next = (char *)(strm->next_in + strm->avail_in); [all …]
|
| H A D | gzread.c | 78 unsigned const char *q = strm->next_in; 88 strm->next_in = state.state->in; 125 state.state->strm.next_in = Z_NULL; 151 ((strm->next_in[0] == 31 && strm->next_in[1] == 139) /* gz header */ 152 || (strm->next_in[0] == 40 && strm->next_in[1] == 181))) { /* zstd header */ 173 memcpy(state.state->x.next, strm->next_in, strm->avail_in);
|
| H A D | zstd_zlibwrapper.c | 391 zwc->inBuffer.src = strm->next_in; in z_deflate() 406 strm->next_in += zwc->inBuffer.pos; in z_deflate() 740 if (ZWRAP_readLE32(strm->next_in) != ZSTD_MAGICNUMBER) { in z_inflate() 761 memcpy(zwd->headerBuf+zwd->totalInBytes, strm->next_in, srcSize); in z_inflate() 764 strm->next_in += srcSize; in z_inflate() 770 strm2.next_in = strm->next_in; in z_inflate() 783 strm->next_in = (unsigned char*)zwd->headerBuf; in z_inflate() 794 strm->next_in = strm2.next_in; in z_inflate() 840 strm->next_in += srcSize; in z_inflate() 873 zwd->inBuffer.src = strm->next_in; in z_inflate() [all …]
|
| /f-stack/freebsd/contrib/zstd/zlibWrapper/examples/ |
| H A D | fitblk_original.c | 83 def->next_in = raw; in partcompress() 114 def->next_in = raw; in recompress() 184 inf.next_in = Z_NULL; in main() 194 inf.next_in = blk; in main() 209 inf.next_in = tmp; in main()
|
| H A D | fitblk.c | 88 def->next_in = raw; in partcompress() 124 def->next_in = raw; in recompress() 201 inf.next_in = Z_NULL; in main() 211 inf.next_in = blk; in main() 228 inf.next_in = tmp; in main()
|
| H A D | example_original.c | 232 c_stream.next_in = (z_const unsigned char *)hello; 268 d_stream.next_in = compr; 316 c_stream.next_in = uncompr; 327 c_stream.next_in = compr; 334 c_stream.next_in = uncompr; 364 d_stream.next_in = compr; 407 c_stream.next_in = (z_const unsigned char *)hello; 443 d_stream.next_in = compr; 496 c_stream.next_in = (z_const unsigned char *)hello; 524 d_stream.next_in = compr;
|
| H A D | example.c | 240 c_stream.next_in = (z_const unsigned char *)hello; 276 d_stream.next_in = compr; 324 c_stream.next_in = uncompr; 335 c_stream.next_in = compr; 342 c_stream.next_in = uncompr; 372 d_stream.next_in = compr; 415 c_stream.next_in = (z_const unsigned char *)hello; 451 d_stream.next_in = compr; 504 c_stream.next_in = (z_const unsigned char *)hello; 532 d_stream.next_in = compr;
|
| H A D | minigzip.c | 219 gz->strm.next_in = 0; 252 strm->next_in = (void *)buf; 286 strm->next_in = in; 312 strm->next_in = Z_NULL;
|
| /f-stack/freebsd/netgraph/ |
| H A D | ng_deflate.c | 253 priv->cx.next_in = NULL; in ng_deflate_rcvmsg() 454 priv->cx.next_in = priv->inbuf; in ng_deflate_compress() 457 priv->cx.next_in = priv->inbuf + 1; /* compress protocol */ in ng_deflate_compress() 590 priv->cx.next_in = priv->inbuf + offset; in ng_deflate_decompress() 620 priv->cx.next_in = EMPTY_BLOCK; in ng_deflate_decompress() 662 priv->cx.next_in = headbuf; in ng_deflate_decompress() 670 priv->cx.next_in = in ng_deflate_decompress() 674 priv->cx.next_in = priv->inbuf; in ng_deflate_decompress()
|
| /f-stack/app/nginx-1.16.1/src/http/modules/ |
| H A D | ngx_http_gunzip_filter_module.c | 307 ctx->zstream.next_in = Z_NULL; in ngx_http_gunzip_filter_inflate_start() 350 ctx->zstream.next_in = ctx->in_buf->pos; in ngx_http_gunzip_filter_add_data() 356 ctx->zstream.next_in, ctx->zstream.avail_in); in ngx_http_gunzip_filter_add_data() 424 ctx->zstream.next_in, ctx->zstream.next_out, in ngx_http_gunzip_filter_inflate() 438 ctx->zstream.next_in, ctx->zstream.next_out, in ngx_http_gunzip_filter_inflate() 446 if (ctx->zstream.next_in) { in ngx_http_gunzip_filter_inflate() 447 ctx->in_buf->pos = ctx->zstream.next_in; in ngx_http_gunzip_filter_inflate() 450 ctx->zstream.next_in = NULL; in ngx_http_gunzip_filter_inflate()
|
| H A D | ngx_http_gzip_filter_module.c | 733 ctx->zstream.next_in = ctx->in_buf->pos; in ngx_http_gzip_filter_add_data() 739 ctx->zstream.next_in, ctx->zstream.avail_in); in ngx_http_gzip_filter_add_data() 750 ctx->crc32 = crc32(ctx->crc32, ctx->zstream.next_in, in ngx_http_gzip_filter_add_data() 814 ctx->zstream.next_in, ctx->zstream.next_out, in ngx_http_gzip_filter_deflate() 828 ctx->zstream.next_in, ctx->zstream.next_out, in ngx_http_gzip_filter_deflate() 836 if (ctx->zstream.next_in) { in ngx_http_gzip_filter_deflate() 837 ctx->in_buf->pos = ctx->zstream.next_in; in ngx_http_gzip_filter_deflate() 840 ctx->zstream.next_in = NULL; in ngx_http_gzip_filter_deflate()
|
| /f-stack/dpdk/drivers/compress/isal/ |
| H A D | isal_compress_pmd.c | 249 qp->stream->next_in = rte_pktmbuf_mtod_offset(src, uint8_t *, in chained_mbuf_compression() 261 if (unlikely(!qp->stream->next_in || !qp->stream->next_out)) { in chained_mbuf_compression() 287 qp->stream->next_in = in chained_mbuf_compression() 339 qp->state->next_in = rte_pktmbuf_mtod_offset(src, uint8_t *, in chained_mbuf_decompression() 368 qp->state->next_in = in chained_mbuf_decompression() 472 qp->stream->next_in = rte_pktmbuf_mtod_offset(op->m_src, in process_isal_deflate() 480 if (unlikely(!qp->stream->next_in || !qp->stream->next_out)) { in process_isal_deflate() 563 qp->state->next_in = rte_pktmbuf_mtod_offset(op->m_src, in process_isal_inflate() 571 if (unlikely(!qp->state->next_in || !qp->state->next_out)) { in process_isal_inflate()
|
| /f-stack/dpdk/drivers/compress/zlib/ |
| H A D | zlib_pmd.c | 42 strm->next_in = rte_pktmbuf_mtod_offset(mbuf_src, uint8_t *, in process_zlib_deflate() 89 } while (COMPUTE_BUF(mbuf_src, strm->next_in, strm->avail_in)); in process_zlib_deflate() 120 strm->next_in = rte_pktmbuf_mtod_offset(mbuf_src, uint8_t *, in process_zlib_inflate() 175 } while (COMPUTE_BUF(mbuf_src, strm->next_in, strm->avail_in)); in process_zlib_inflate()
|
| /f-stack/freebsd/contrib/openzfs/module/os/linux/spl/ |
| H A D | spl-zlib.c | 102 stream.next_in = (Byte *)source; in z_compress_level() 156 stream.next_in = (Byte *)source; in z_uncompress()
|
| /f-stack/freebsd/contrib/openzfs/module/os/freebsd/spl/ |
| H A D | spl_zlib.c | 150 stream.next_in = (Byte *)source; in z_compress_level() 206 stream.next_in = (Byte *)source; in z_uncompress()
|
| /f-stack/freebsd/contrib/zstd/programs/ |
| H A D | fileio.c | 1042 strm.next_in = 0; in FIO_compressGzFrame() 1053 strm.next_in = (z_const unsigned char*)ress->srcBuffer; in FIO_compressGzFrame() 1129 strm.next_in = 0; in FIO_compressLzmaFrame() 1139 strm.next_in = (BYTE const*)ress->srcBuffer; in FIO_compressLzmaFrame() 2186 strm.next_in = 0; in FIO_decompressGzFrame() 2195 strm.next_in = (z_const unsigned char*)ress->srcBuffer; in FIO_decompressGzFrame() 2226 memmove(ress->srcBuffer, strm.next_in, strm.avail_in); in FIO_decompressGzFrame() 2252 strm.next_in = 0; in FIO_decompressLzmaFrame() 2269 strm.next_in = (BYTE const*)ress->srcBuffer; in FIO_decompressLzmaFrame() 2277 strm.next_in = (BYTE const*)ress->srcBuffer; in FIO_decompressLzmaFrame() [all …]
|