Uses of Class
com.github.luben.zstd.ZstdDictCompress
Packages that use ZstdDictCompress
-
Uses of ZstdDictCompress in com.github.luben.zstd
Fields in com.github.luben.zstd declared as ZstdDictCompressModifier and TypeFieldDescriptionprivate ZstdDictCompress
ZstdCompressCtx.compression_dict
private ZstdDictCompress
ZstdDirectBufferCompressingStreamNoFinalizer.fastDict
Methods in com.github.luben.zstd with parameters of type ZstdDictCompressModifier and TypeMethodDescriptionstatic long
Zstd.compress
(byte[] dst, byte[] src, ZstdDictCompress dict) static byte[]
Zstd.compress
(byte[] src, ZstdDictCompress dict) Compresses the data in buffer 'src'static ByteBuffer
Zstd.compress
(ByteBuffer srcBuff, ZstdDictCompress dict) Compresses buffer 'src' into buffer 'dst' with dictionary.static int
Zstd.compress
(ByteBuffer dstBuff, ByteBuffer srcBuff, ZstdDictCompress dict) Compresses buffer 'src' into buffer 'dst' with dictionary.static long
Zstd.compressDirectByteBufferFastDict
(ByteBuffer dst, int dstOffset, int dstSize, ByteBuffer src, int srcOffset, int srcSize, ZstdDictCompress dict) Compresses buffer 'src' into buffer 'dst' with dictionary.static long
Zstd.compressFastDict
(byte[] dst, int dstOffset, byte[] src, int srcOffset, int length, ZstdDictCompress dict) Compresses buffer 'src' into buffer 'dst' with dictionary.static long
Zstd.compressFastDict
(byte[] dst, int dstOffset, byte[] src, int srcOffset, ZstdDictCompress dict) Compresses buffer 'src' into buffer 'dst' with dictionary.private long
ZstdDirectBufferCompressingStreamNoFinalizer.initCStreamWithFastDict
(long ctx, ZstdDictCompress dict) private long
ZstdCompressCtx.loadCDictFast0
(long ptr, ZstdDictCompress dict) ZstdCompressCtx.loadDict
(ZstdDictCompress dict) Load compression dictionary to be used for subsequently compressed frames.static int
Zstd.loadFastDictCompress
(long stream, ZstdDictCompress dict) ZstdDirectBufferCompressingStream.setDict
(ZstdDictCompress dict) ZstdDirectBufferCompressingStreamNoFinalizer.setDict
(ZstdDictCompress dict) ZstdOutputStream.setDict
(ZstdDictCompress dict) ZstdOutputStreamNoFinalizer.setDict
(ZstdDictCompress dict)