zstd.c.zstd

Undocumented in source.

Members

Aliases

ZSTD_CCtx
alias ZSTD_CCtx = ZSTD_CCtx_s
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_CDict
alias ZSTD_CDict = ZSTD_CDict_s
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_CStream
alias ZSTD_CStream = ZSTD_CStream_s
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_DCtx
alias ZSTD_DCtx = ZSTD_DCtx_s
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_DDict
alias ZSTD_DDict = ZSTD_DDict_s
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_DStream
alias ZSTD_DStream = ZSTD_DStream_s
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_inBuffer
alias ZSTD_inBuffer = ZSTD_inBuffer_s
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_outBuffer
alias ZSTD_outBuffer = ZSTD_outBuffer_s
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Functions

ZSTD_CStreamInSize
size_t ZSTD_CStreamInSize()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_CStreamOutSize
size_t ZSTD_CStreamOutSize()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_DStreamInSize
size_t ZSTD_DStreamInSize()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_DStreamOutSize
size_t ZSTD_DStreamOutSize()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_compress
size_t ZSTD_compress(void* dst, size_t dstCapacity, const(void)* src, size_t srcSize, int compressionLevel)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_compressBound
size_t ZSTD_compressBound(size_t srcSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_compressCCtx
size_t ZSTD_compressCCtx(ZSTD_CCtx* ctx, void* dst, size_t dstCapacity, const(void)* src, size_t srcSize, int compressionLevel)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_compressStream
size_t ZSTD_compressStream(ZSTD_CStream* zcs, ZSTD_outBuffer* output, ZSTD_inBuffer* input)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_compress_usingCDict
size_t ZSTD_compress_usingCDict(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const(void)* src, size_t srcSize, const(ZSTD_CDict)* cdict)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_compress_usingDict
size_t ZSTD_compress_usingDict(ZSTD_CCtx* ctx, void* dst, size_t dstCapacity, const(void)* src, size_t srcSize, const(void)* dict, size_t dictSize, int compressionLevel)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_createCCtx
ZSTD_CCtx* ZSTD_createCCtx()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_createCDict
ZSTD_CDict* ZSTD_createCDict(const(void)* dict, size_t dictSize, int compressionLevel)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_createCStream
ZSTD_CStream* ZSTD_createCStream()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_createDCtx
ZSTD_DCtx* ZSTD_createDCtx()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_createDDict
ZSTD_DDict* ZSTD_createDDict(const(void)* dict, size_t dictSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_createDStream
ZSTD_DStream* ZSTD_createDStream()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_decompress
size_t ZSTD_decompress(void* dst, size_t dstCapacity, const(void)* src, size_t compressedSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_decompressDCtx
size_t ZSTD_decompressDCtx(ZSTD_DCtx* ctx, void* dst, size_t dstCapacity, const(void)* src, size_t srcSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_decompressStream
size_t ZSTD_decompressStream(ZSTD_DStream* zds, ZSTD_outBuffer* output, ZSTD_inBuffer* input)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_decompress_usingDDict
size_t ZSTD_decompress_usingDDict(ZSTD_DCtx* dctx, void* dst, size_t dstCapacity, const(void)* src, size_t srcSize, const(ZSTD_DDict)* ddict)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_decompress_usingDict
size_t ZSTD_decompress_usingDict(ZSTD_DCtx* dctx, void* dst, size_t dstCapacity, const(void)* src, size_t srcSize, const(void)* dict, size_t dictSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_endStream
size_t ZSTD_endStream(ZSTD_CStream* zcs, ZSTD_outBuffer* output)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_flushStream
size_t ZSTD_flushStream(ZSTD_CStream* zcs, ZSTD_outBuffer* output)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_freeCCtx
size_t ZSTD_freeCCtx(ZSTD_CCtx* cctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_freeCDict
size_t ZSTD_freeCDict(ZSTD_CDict* CDict)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_freeCStream
size_t ZSTD_freeCStream(ZSTD_CStream* zcs)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_freeDCtx
size_t ZSTD_freeDCtx(ZSTD_DCtx* dctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_freeDDict
size_t ZSTD_freeDDict(ZSTD_DDict* ddict)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_freeDStream
size_t ZSTD_freeDStream(ZSTD_DStream* zds)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_getDecompressedSize
size_t ZSTD_getDecompressedSize(const(void)* src, size_t srcSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_getErrorName
const(char)* ZSTD_getErrorName(size_t code)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_initCStream
size_t ZSTD_initCStream(ZSTD_CStream* zcs, int compressionLevel)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_initDStream
size_t ZSTD_initDStream(ZSTD_DStream* zds)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_isError
uint ZSTD_isError(size_t code)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_maxCLevel
int ZSTD_maxCLevel()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_versionNumber
uint ZSTD_versionNumber()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Structs

ZSTD_CCtx_s
struct ZSTD_CCtx_s
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_CDict_s
struct ZSTD_CDict_s
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_CStream_s
struct ZSTD_CStream_s
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_DCtx_s
struct ZSTD_DCtx_s
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_DDict_s
struct ZSTD_DDict_s
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_DStream_s
struct ZSTD_DStream_s
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_inBuffer_s
struct ZSTD_inBuffer_s
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_outBuffer_s
struct ZSTD_outBuffer_s
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Meta