Searched refs:ZSTD_inBuffer (Results 1 - 7 of 7) sorted by relevance

/linux-master/tools/perf/util/
H A Dzstd.c36 ZSTD_inBuffer input = { src, src_size, 0 };
85 ZSTD_inBuffer input = { src, src_size, 0 };
/linux-master/include/linux/
H A Dzstd.h234 typedef ZSTD_inBuffer zstd_in_buffer;
H A Dzstd_lib.h591 } ZSTD_inBuffer; typedef in typeref:struct:ZSTD_inBuffer_s
706 ZSTD_inBuffer* input,
749 ZSTDLIB_API size_t ZSTD_compressStream(ZSTD_CStream* zcs, ZSTD_outBuffer* output, ZSTD_inBuffer* input);
798 ZSTDLIB_API size_t ZSTD_decompressStream(ZSTD_DStream* zds, ZSTD_outBuffer* output, ZSTD_inBuffer* input);
1811 * Tells the compressor that the ZSTD_inBuffer will ALWAYS be the same
1816 * is not used. The data in the ZSTD_inBuffer in the range [src, src + pos)
1820 * because the user guarantees it can reference the ZSTD_inBuffer until
1828 * NOTE: So long as the ZSTD_inBuffer always points to valid memory, using
1832 * WARNING: The data in the ZSTD_inBuffer in the range [dst, dst + pos) MUST
1834 * is because zstd needs to reference data in the ZSTD_inBuffer t
[all...]
/linux-master/kernel/module/
H A Ddecompress.c212 ZSTD_inBuffer zstd_buf;
/linux-master/lib/zstd/compress/
H A Dzstd_compress.c5211 ZSTD_inBuffer* input,
5382 size_t ZSTD_compressStream(ZSTD_CStream* zcs, ZSTD_outBuffer* output, ZSTD_inBuffer* input)
5391 static void ZSTD_setBufferExpectations(ZSTD_CCtx* cctx, ZSTD_outBuffer const* output, ZSTD_inBuffer const* input)
5406 ZSTD_inBuffer const* input,
5410 ZSTD_inBuffer const expect = cctx->expectedInBuffer;
5482 ZSTD_inBuffer* input,
5514 ZSTD_inBuffer input = { src, srcSize, *srcPos };
5962 ZSTD_inBuffer input = { NULL, 0, 0 };
5969 ZSTD_inBuffer input = { NULL, 0, 0 };
H A Dzstd_compress_internal.h406 ZSTD_inBuffer expectedInBuffer;
/linux-master/lib/zstd/decompress/
H A Dzstd_decompress.c1846 * used both when reading directly from the ZSTD_inBuffer, and in buffered input mode.
1878 size_t ZSTD_decompressStream(ZSTD_DStream* zds, ZSTD_outBuffer* output, ZSTD_inBuffer* input)
2144 ZSTD_inBuffer input = { src, srcSize, *srcPos };

Completed in 138 milliseconds