static long |
Zstd.compress(byte @NotNull [] dst,
byte @NotNull [] src,
@NotNull ZstdDictCompress dict) |
|
static byte @NotNull [] |
Zstd.compress(byte @NotNull [] src,
@NotNull ZstdDictCompress dict) |
Compresses the data in buffer 'src'
|
static @NotNull java.nio.ByteBuffer |
Zstd.compress(@NotNull java.nio.ByteBuffer srcBuff,
@NotNull ZstdDictCompress dict) |
Compresses buffer 'src' into buffer 'dst' with dictionary.
|
static int |
Zstd.compress(@NotNull java.nio.ByteBuffer dstBuff,
@NotNull java.nio.ByteBuffer srcBuff,
@NotNull ZstdDictCompress dict) |
Compresses buffer 'src' into buffer 'dst' with dictionary.
|
static long |
Zstd.compressDirectByteBufferFastDict(@NotNull java.nio.ByteBuffer dst,
int dstOffset,
int dstSize,
@NotNull java.nio.ByteBuffer src,
int srcOffset,
int srcSize,
@NotNull ZstdDictCompress dict) |
Compresses buffer 'src' into buffer 'dst' with dictionary.
|
static long |
Zstd.compressFastDict(byte @NotNull [] dst,
int dstOffset,
byte @NotNull [] src,
int srcOffset,
int length,
@NotNull ZstdDictCompress dict) |
Compresses buffer 'src' into buffer 'dst' with dictionary.
|
static long |
Zstd.compressFastDict(byte @NotNull [] dst,
int dstOffset,
byte @NotNull [] src,
int srcOffset,
@NotNull ZstdDictCompress dict) |
Compresses buffer 'src' into buffer 'dst' with dictionary.
|
@NotNull ZstdCompressCtx |
ZstdCompressCtx.loadDict(@Nullable ZstdDictCompress dict) |
Load compression dictionary to be used for subsequently compressed frames.
|
static int |
Zstd.loadFastDictCompress(long stream,
@NotNull ZstdDictCompress dict) |
|
@NotNull ZstdDirectBufferCompressingStream |
ZstdDirectBufferCompressingStream.setDict(@NotNull ZstdDictCompress dict) |
|
@NotNull ZstdDirectBufferCompressingStreamNoFinalizer |
ZstdDirectBufferCompressingStreamNoFinalizer.setDict(@NotNull ZstdDictCompress dict) |
|
@NotNull ZstdOutputStream |
ZstdOutputStream.setDict(@NotNull ZstdDictCompress dict) |
|
@NotNull ZstdOutputStreamNoFinalizer |
ZstdOutputStreamNoFinalizer.setDict(@NotNull ZstdDictCompress dict) |
|