bindbc.zstandard.zstd

Undocumented in source.

Members

Aliases

ZSTD_CCtx
alias ZSTD_CCtx = ZSTD_CCtx_s
Undocumented in source.
ZSTD_CCtx_params
alias ZSTD_CCtx_params = ZSTD_CCtx_params_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.
ZSTD_CStream
alias ZSTD_CStream = ZSTD_CCtx
Undocumented in source.
ZSTD_DCtx
alias ZSTD_DCtx = ZSTD_DCtx_s
Undocumented in source.
ZSTD_DDict
alias ZSTD_DDict = ZSTD_DDict_s
Undocumented in source.
ZSTD_DStream
alias ZSTD_DStream = ZSTD_DCtx
Undocumented in source.
ZSTD_allocFunction
alias ZSTD_allocFunction = void* function(void* opaque, size_t size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_freeFunction
alias ZSTD_freeFunction = void function(void* opaque, void* address)
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.
ZSTD_outBuffer
alias ZSTD_outBuffer = ZSTD_outBuffer_s
Undocumented in source.
pZSTD_CCtx_loadDictionary
alias pZSTD_CCtx_loadDictionary = size_t function(ZSTD_CCtx* cctx, 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.
pZSTD_CCtx_refCDict
alias pZSTD_CCtx_refCDict = size_t function(ZSTD_CCtx* cctx, 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.
pZSTD_CCtx_refPrefix
alias pZSTD_CCtx_refPrefix = size_t function(ZSTD_CCtx* cctx, const(void*) prefix, size_t prefixSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pZSTD_CCtx_reset
alias pZSTD_CCtx_reset = size_t function(ZSTD_CCtx* cctx, ZSTD_ResetDirective reset)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pZSTD_CCtx_setParameter
alias pZSTD_CCtx_setParameter = size_t function(ZSTD_CCtx* cctx, ZSTD_cParameter param, int value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pZSTD_CCtx_setPledgedSrcSize
alias pZSTD_CCtx_setPledgedSrcSize = size_t function(ZSTD_CCtx* cctx, ulong pledgedSrcSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pZSTD_CStreamInSize
alias pZSTD_CStreamInSize = size_t function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pZSTD_CStreamOutSize
alias pZSTD_CStreamOutSize = size_t function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pZSTD_DCtx_loadDictionary
alias pZSTD_DCtx_loadDictionary = size_t function(ZSTD_DCtx* dctx, 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.
pZSTD_DCtx_refDDict
alias pZSTD_DCtx_refDDict = size_t function(ZSTD_DCtx* dctx, 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.
pZSTD_DCtx_refPrefix
alias pZSTD_DCtx_refPrefix = size_t function(ZSTD_DCtx* dctx, const(void)* prefix, size_t prefixSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pZSTD_DCtx_reset
alias pZSTD_DCtx_reset = size_t function(ZSTD_DCtx* dctx, ZSTD_ResetDirective reset)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pZSTD_DStreamInSize
alias pZSTD_DStreamInSize = size_t function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pZSTD_DStreamOutSize
alias pZSTD_DStreamOutSize = size_t function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pZSTD_cParam_getBounds
alias pZSTD_cParam_getBounds = ZSTD_bounds function(ZSTD_cParameter cParam)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pZSTD_compress
alias pZSTD_compress = size_t function(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.
pZSTD_compress2
alias pZSTD_compress2 = size_t function(ZSTD_CCtx* cctx, 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.
pZSTD_compressBound
alias pZSTD_compressBound = size_t function(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.
pZSTD_compressCCtx
alias pZSTD_compressCCtx = size_t function(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.
pZSTD_compressStream
alias pZSTD_compressStream = size_t function(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.
pZSTD_compressStream2
alias pZSTD_compressStream2 = size_t function(ZSTD_CCtx* cctx, ZSTD_outBuffer* output, ZSTD_inBuffer* input, ZSTD_EndDirective endOp)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pZSTD_compress_usingCDict
alias pZSTD_compress_usingCDict = size_t function(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.
pZSTD_compress_usingDict
alias pZSTD_compress_usingDict = size_t function(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.
pZSTD_createCCtx
alias pZSTD_createCCtx = ZSTD_CCtx* function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pZSTD_createCDict
alias pZSTD_createCDict = ZSTD_CDict* function(const(void)* dictBuffer, 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.
pZSTD_createCStream
alias pZSTD_createCStream = ZSTD_CStream* function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pZSTD_createDCtx
alias pZSTD_createDCtx = ZSTD_DCtx* function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pZSTD_createDDict
alias pZSTD_createDDict = ZSTD_DDict* function(const(void)* dictBuffer, 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.
pZSTD_createDStream
alias pZSTD_createDStream = ZSTD_DStream* function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pZSTD_decompress
alias pZSTD_decompress = size_t function(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.
pZSTD_decompressDCtx
alias pZSTD_decompressDCtx = size_t function(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.
pZSTD_decompressStream
alias pZSTD_decompressStream = size_t function(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.
pZSTD_decompress_usingDDict
alias pZSTD_decompress_usingDDict = size_t function(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.
pZSTD_decompress_usingDict
alias pZSTD_decompress_usingDict = size_t function(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.
pZSTD_endStream
alias pZSTD_endStream = size_t function(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.
pZSTD_flushStream
alias pZSTD_flushStream = size_t function(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.
pZSTD_freeCCtx
alias pZSTD_freeCCtx = size_t function(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.
pZSTD_freeCDict
alias pZSTD_freeCDict = size_t function(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.
pZSTD_freeCStream
alias pZSTD_freeCStream = size_t function(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.
pZSTD_freeDCtx
alias pZSTD_freeDCtx = size_t function(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.
pZSTD_freeDDict
alias pZSTD_freeDDict = size_t function(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.
pZSTD_freeDStream
alias pZSTD_freeDStream = size_t function(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.
pZSTD_getDecompressedSize
alias pZSTD_getDecompressedSize = ulong function(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.
pZSTD_getDictID_fromDDict
alias pZSTD_getDictID_fromDDict = uint function(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.
pZSTD_getDictID_fromDict
alias pZSTD_getDictID_fromDict = uint function(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.
pZSTD_getErrorName
alias pZSTD_getErrorName = const(char)* function(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.
pZSTD_getFrameContentSize
alias pZSTD_getFrameContentSize = ulong function(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.
pZSTD_initCStream
alias pZSTD_initCStream = size_t function(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.
pZSTD_initDStream
alias pZSTD_initDStream = size_t function(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.
pZSTD_isError
alias pZSTD_isError = uint function(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.
pZSTD_maxCLevel
alias pZSTD_maxCLevel = int function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pZSTD_sizeof_CCtx
alias pZSTD_sizeof_CCtx = size_t function(const 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.
pZSTD_sizeof_CDict
alias pZSTD_sizeof_CDict = size_t function(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.
pZSTD_sizeof_CStream
alias pZSTD_sizeof_CStream = size_t function(const 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.
pZSTD_sizeof_DCtx
alias pZSTD_sizeof_DCtx = size_t function(const 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.
pZSTD_sizeof_DDict
alias pZSTD_sizeof_DDict = size_t function(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.
pZSTD_sizeof_DStream
alias pZSTD_sizeof_DStream = size_t function(const 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.
pZSTD_versionNumber
alias pZSTD_versionNumber = uint function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pZSTD_versionString
alias pZSTD_versionString = const(char)* function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Enums

ZSTD_DStreamParameter_e
enum ZSTD_DStreamParameter_e
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_EndDirective
enum ZSTD_EndDirective
Undocumented in source.
ZSTD_ResetDirective
enum ZSTD_ResetDirective

NOTE: 1.4 only

ZSTD_cParameter
enum ZSTD_cParameter

Note: Not yet available in 1.3 versions with dynamic linking.

ZSTD_dictContentType_e
enum ZSTD_dictContentType_e
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_dictLoadMethod_e
enum ZSTD_dictLoadMethod_e
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_frameType_e
enum ZSTD_frameType_e
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_nextInputType_e
enum ZSTD_nextInputType_e
Undocumented in source.
ZSTD_nextInputType_e
enum ZSTD_nextInputType_e
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_strategy
enum ZSTD_strategy

Note: Not yet available in 1.3 versions with dynamic linking.

Functions

ZSTD_CCtx_loadDictionary
size_t ZSTD_CCtx_loadDictionary(ZSTD_CCtx* cctx, 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_CCtx_refCDict
size_t ZSTD_CCtx_refCDict(ZSTD_CCtx* cctx, 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_CCtx_refPrefix
size_t ZSTD_CCtx_refPrefix(ZSTD_CCtx* cctx, const(void*) prefix, size_t prefixSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_CCtx_reset
size_t ZSTD_CCtx_reset(ZSTD_CCtx* cctx, ZSTD_ResetDirective reset)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_CCtx_setParameter
size_t ZSTD_CCtx_setParameter(ZSTD_CCtx* cctx, ZSTD_cParameter param, int value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_CCtx_setPledgedSrcSize
size_t ZSTD_CCtx_setPledgedSrcSize(ZSTD_CCtx* cctx, ulong pledgedSrcSize)
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)

Helper function, found in the original API as a precompiler macro.

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_DCtx_loadDictionary
size_t ZSTD_DCtx_loadDictionary(ZSTD_DCtx* dctx, 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_DCtx_refDDict
size_t ZSTD_DCtx_refDDict(ZSTD_DCtx* dctx, 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_DCtx_refPrefix
size_t ZSTD_DCtx_refPrefix(ZSTD_DCtx* dctx, const(void)* prefix, size_t prefixSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_DCtx_reset
size_t ZSTD_DCtx_reset(ZSTD_DCtx* dctx, ZSTD_ResetDirective reset)
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_adjustCParams
ZSTD_compressionParameters ZSTD_adjustCParams(ZSTD_compressionParameters cPar, ulong srcSize, 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_cParam_getBounds
ZSTD_bounds ZSTD_cParam_getBounds(ZSTD_cParameter cParam)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_checkCParams
size_t ZSTD_checkCParams(ZSTD_compressionParameters params)
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_compress2
size_t ZSTD_compress2(ZSTD_CCtx* cctx, 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_compressBegin
size_t ZSTD_compressBegin(ZSTD_CCtx* cctx, 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_compressBegin_advanced
size_t ZSTD_compressBegin_advanced(ZSTD_CCtx* cctx, const(void)* dict, size_t dictSize, ZSTD_parameters params, ulong pledgedSrcSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_compressBegin_usingCDict
size_t ZSTD_compressBegin_usingCDict(ZSTD_CCtx* cctx, 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_compressBegin_usingCDict_advanced
size_t ZSTD_compressBegin_usingCDict_advanced(const(ZSTD_CCtx)* cctx, ZSTD_CDict* cdict, ZSTD_frameParameters fParams, ulong pledgedSrcSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_compressBegin_usingDict
size_t ZSTD_compressBegin_usingDict(ZSTD_CCtx* cctx, 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_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_compressContinue
size_t ZSTD_compressContinue(ZSTD_CCtx* cctx, 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_compressEnd
size_t ZSTD_compressEnd(ZSTD_CCtx* cctx, 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_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_compressStream2
size_t ZSTD_compressStream2(ZSTD_CCtx* cctx, ZSTD_outBuffer* output, ZSTD_inBuffer* input, ZSTD_EndDirective endOp)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_compress_advanced
size_t ZSTD_compress_advanced(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const(void)* src, size_t srcSize, const(void)* dict, size_t dictSize, ZSTD_parameters params)
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_usingCDict_advanced
size_t ZSTD_compress_usingCDict_advanced(ZSTD_CCtx* cctx, void* dst, size_t dstCapacity, const(void)* src, size_t srcSize, const(ZSTD_CDict)* cdict, ZSTD_frameParameters fParams)
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_copyCCtx
size_t ZSTD_copyCCtx(ZSTD_CCtx* cctx, ZSTD_CCtx* preparedCCtx, ulong pledgedSrcSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_copyDCtx
void ZSTD_copyDCtx(ZSTD_DCtx* dctx, const(ZSTD_DCtx)* preparedDCtx)
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_createCCtx_advanced
ZSTD_CCtx* ZSTD_createCCtx_advanced(ZSTD_customMem customMem)
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)* dictBuffer, 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_createCDict_advanced
ZSTD_CDict* ZSTD_createCDict_advanced(const(void)* dict, size_t dictSize, ZSTD_dictLoadMethod_e dictLoadMethod, ZSTD_dictContentType_e dictContentType, ZSTD_compressionParameters cParams, ZSTD_customMem customMem)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_createCDict_byReference
ZSTD_CDict* ZSTD_createCDict_byReference(const(void)* dictBuffer, 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_createCStream_advanced
ZSTD_CStream* ZSTD_createCStream_advanced(ZSTD_customMem customMem)
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_createDCtx_advanced
ZSTD_DCtx* ZSTD_createDCtx_advanced(ZSTD_customMem customMem)
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)* dictBuffer, 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_createDDict_advanced
ZSTD_DDict* ZSTD_createDDict_advanced(const(void)* dict, size_t dictSize, ZSTD_dictLoadMethod_e dictLoadMethod, ZSTD_dictContentType_e dictContentType, ZSTD_customMem customMem)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_createDDict_byReference
ZSTD_DDict* ZSTD_createDDict_byReference(const(void)* dictBuffer, 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_createDStream_advanced
ZSTD_DStream* ZSTD_createDStream_advanced(ZSTD_customMem customMem)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_decodingBufferSize_min
size_t ZSTD_decodingBufferSize_min(ulong windowSize, ulong frameContentSize)
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_decompressBegin
size_t ZSTD_decompressBegin(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_decompressBegin_usingDDict
size_t ZSTD_decompressBegin_usingDDict(ZSTD_DCtx* dctx, 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_decompressBegin_usingDict
size_t ZSTD_decompressBegin_usingDict(ZSTD_DCtx* dctx, 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_decompressContinue
size_t ZSTD_decompressContinue(ZSTD_DCtx* dctx, 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_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_estimateCCtxSize
size_t ZSTD_estimateCCtxSize(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_estimateCCtxSize_usingCCtxParams
size_t ZSTD_estimateCCtxSize_usingCCtxParams(const(ZSTD_CCtx_params)* params)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_estimateCCtxSize_usingCParams
size_t ZSTD_estimateCCtxSize_usingCParams(ZSTD_compressionParameters cParams)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_estimateCDictSize
size_t ZSTD_estimateCDictSize(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_estimateCDictSize_advanced
size_t ZSTD_estimateCDictSize_advanced(size_t dictSize, ZSTD_compressionParameters cParams, ZSTD_dictLoadMethod_e dictLoadMethod)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_estimateCStreamSize
size_t ZSTD_estimateCStreamSize(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_estimateCStreamSize_usingCCtxParams
size_t ZSTD_estimateCStreamSize_usingCCtxParams(const(ZSTD_CCtx_params)* params)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_estimateCStreamSize_usingCParams
size_t ZSTD_estimateCStreamSize_usingCParams(ZSTD_compressionParameters cParams)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_estimateDCtxSize
size_t ZSTD_estimateDCtxSize()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_estimateDDictSize
size_t ZSTD_estimateDDictSize(size_t dictSize, ZSTD_dictLoadMethod_e dictLoadMethod)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_estimateDStreamSize
size_t ZSTD_estimateDStreamSize(size_t windowSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_estimateDStreamSize_fromFrame
size_t ZSTD_estimateDStreamSize_fromFrame(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_findDecompressedSize
ulong ZSTD_findDecompressedSize(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_findFrameCompressedSize
size_t ZSTD_findFrameCompressedSize(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_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_frameHeaderSize
size_t ZSTD_frameHeaderSize(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_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_getCParams
ZSTD_compressionParameters ZSTD_getCParams(int compressionLevel, ulong estimatedSrcSize, 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_getDecompressedSize
ulong 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_getDictID_fromDDict
uint ZSTD_getDictID_fromDDict(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_getDictID_fromDict
uint ZSTD_getDictID_fromDict(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_getDictID_fromFrame
uint ZSTD_getDictID_fromFrame(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_getFrameContentSize
ulong ZSTD_getFrameContentSize(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_getFrameHeader
size_t ZSTD_getFrameHeader(ZSTD_frameHeader* zfhPtr, 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_getFrameProgression
ZSTD_frameProgression ZSTD_getFrameProgression(const(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_getParams
ZSTD_parameters ZSTD_getParams(int compressionLevel, ulong estimatedSrcSize, 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_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_initCStream_advanced
size_t ZSTD_initCStream_advanced(ZSTD_CStream* zcs, const(void)* dict, size_t dictSize, ZSTD_parameters params, ulong pledgedSrcSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_initCStream_srcSize
size_t ZSTD_initCStream_srcSize(ZSTD_CStream* zcs, int compressionLevel, ulong pledgedSrcSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_initCStream_usingCDict
size_t ZSTD_initCStream_usingCDict(ZSTD_CStream* zcs, 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_initCStream_usingCDict_advanced
size_t ZSTD_initCStream_usingCDict_advanced(ZSTD_CStream* zcs, const(ZSTD_CDict)* cdict, ZSTD_frameParameters fParams, ulong pledgedSrcSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_initCStream_usingDict
size_t ZSTD_initCStream_usingDict(ZSTD_CStream* zcs, 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_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_initDStream_usingDDict
size_t ZSTD_initDStream_usingDDict(ZSTD_DStream* zds, 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_initDStream_usingDict
size_t ZSTD_initDStream_usingDict(ZSTD_DStream* zds, 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_initStaticCCtx
ZSTD_CCtx* ZSTD_initStaticCCtx(void* workspace, size_t workspaceSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_initStaticCDict
const(ZSTD_CDict)* ZSTD_initStaticCDict(void* workspace, size_t workspaceSize, const(void)* dict, size_t dictSize, ZSTD_dictLoadMethod_e dictLoadMethod, ZSTD_dictContentType_e dictContentType, ZSTD_compressionParameters cParams)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_initStaticCStream
ZSTD_CStream* ZSTD_initStaticCStream(void* workspace, size_t workspaceSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_initStaticDCtx
ZSTD_DCtx* ZSTD_initStaticDCtx(void* workspace, size_t workspaceSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_initStaticDDict
const(ZSTD_DDict)* ZSTD_initStaticDDict(void* workspace, size_t workspaceSize, const(void)* dict, size_t dictSize, ZSTD_dictLoadMethod_e dictLoadMethod, ZSTD_dictContentType_e dictContentType)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_initStaticDStream
ZSTD_DStream* ZSTD_initStaticDStream(void* workspace, size_t workspaceSize)
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_isFrame
uint ZSTD_isFrame(const(void)* buffer, size_t size)
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_minCLevel
int ZSTD_minCLevel()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_nextInputType
ZSTD_nextInputType_e ZSTD_nextInputType(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_nextSrcSizeToDecompress
size_t ZSTD_nextSrcSizeToDecompress(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_resetCStream
size_t ZSTD_resetCStream(ZSTD_CStream* zcs, ulong pledgedSrcSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_resetDStream
size_t ZSTD_resetDStream(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_setDStreamParameter
size_t ZSTD_setDStreamParameter(ZSTD_DStream* zds, ZSTD_DStreamParameter_e paramType, uint paramValue)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_sizeof_CCtx
size_t ZSTD_sizeof_CCtx(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_sizeof_CDict
size_t ZSTD_sizeof_CDict(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_sizeof_CStream
size_t ZSTD_sizeof_CStream(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_sizeof_DCtx
size_t ZSTD_sizeof_DCtx(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_sizeof_DDict
size_t ZSTD_sizeof_DDict(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_sizeof_DStream
size_t ZSTD_sizeof_DStream(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_toFlushNow
size_t ZSTD_toFlushNow(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_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.
ZSTD_versionString
const(char)* ZSTD_versionString()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Manifest constants

ZSTD_BLOCKSIZELOG_MAX
enum ZSTD_BLOCKSIZELOG_MAX;
Undocumented in source.
ZSTD_BLOCKSIZE_MAX
enum ZSTD_BLOCKSIZE_MAX;
Undocumented in source.
ZSTD_CHAINLOG_MAX
enum ZSTD_CHAINLOG_MAX;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_CHAINLOG_MAX_32
enum ZSTD_CHAINLOG_MAX_32;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_CHAINLOG_MAX_64
enum ZSTD_CHAINLOG_MAX_64;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_CHAINLOG_MIN
enum ZSTD_CHAINLOG_MIN;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_CONTENTSIZE_ERROR
enum ZSTD_CONTENTSIZE_ERROR;
Undocumented in source.
ZSTD_CONTENTSIZE_UNKNOWN
enum ZSTD_CONTENTSIZE_UNKNOWN;
Undocumented in source.
ZSTD_FRAMEHEADERSIZE_MAX
enum ZSTD_FRAMEHEADERSIZE_MAX;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_FRAMEHEADERSIZE_MIN
enum ZSTD_FRAMEHEADERSIZE_MIN;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_FRAMEHEADERSIZE_PREFIX
enum ZSTD_FRAMEHEADERSIZE_PREFIX;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_HASHLOG3_MAX
enum ZSTD_HASHLOG3_MAX;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_HASHLOG_MAX
enum ZSTD_HASHLOG_MAX;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_HASHLOG_MIN
enum ZSTD_HASHLOG_MIN;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_LDM_BUCKETSIZELOG_MAX
enum ZSTD_LDM_BUCKETSIZELOG_MAX;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_LDM_MINMATCH_MAX
enum ZSTD_LDM_MINMATCH_MAX;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_LDM_MINMATCH_MIN
enum ZSTD_LDM_MINMATCH_MIN;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_MAGICNUMBER
enum ZSTD_MAGICNUMBER;
Undocumented in source.
ZSTD_MAGIC_DICTIONARY
enum ZSTD_MAGIC_DICTIONARY;
Undocumented in source.
ZSTD_MAGIC_SKIPPABLE_START
enum ZSTD_MAGIC_SKIPPABLE_START;
Undocumented in source.
ZSTD_SEARCHLENGTH_MAX
enum ZSTD_SEARCHLENGTH_MAX;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_SEARCHLENGTH_MIN
enum ZSTD_SEARCHLENGTH_MIN;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_SEARCHLOG_MAX
enum ZSTD_SEARCHLOG_MAX;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_SEARCHLOG_MIN
enum ZSTD_SEARCHLOG_MIN;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_TARGETLENGTH_MAX
enum ZSTD_TARGETLENGTH_MAX;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_TARGETLENGTH_MIN
enum ZSTD_TARGETLENGTH_MIN;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_WINDOWLOG_MAX
enum ZSTD_WINDOWLOG_MAX;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_WINDOWLOG_MAX_32
enum ZSTD_WINDOWLOG_MAX_32;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_WINDOWLOG_MAX_64
enum ZSTD_WINDOWLOG_MAX_64;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_WINDOWLOG_MIN
enum ZSTD_WINDOWLOG_MIN;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Static variables

ZSTD_CCtx_loadDictionary
pZSTD_CCtx_loadDictionary ZSTD_CCtx_loadDictionary;
Undocumented in source.
ZSTD_CCtx_refCDict
pZSTD_CCtx_refCDict ZSTD_CCtx_refCDict;
Undocumented in source.
ZSTD_CCtx_refPrefix
pZSTD_CCtx_refPrefix ZSTD_CCtx_refPrefix;
Undocumented in source.
ZSTD_CCtx_reset
pZSTD_CCtx_reset ZSTD_CCtx_reset;
Undocumented in source.
ZSTD_CCtx_setParameter
pZSTD_CCtx_setParameter ZSTD_CCtx_setParameter;
Undocumented in source.
ZSTD_CCtx_setPledgedSrcSize
pZSTD_CCtx_setPledgedSrcSize ZSTD_CCtx_setPledgedSrcSize;
Undocumented in source.
ZSTD_CStreamInSize
pZSTD_CStreamInSize ZSTD_CStreamInSize;
Undocumented in source.
ZSTD_CStreamOutSize
pZSTD_CStreamOutSize ZSTD_CStreamOutSize;
Undocumented in source.
ZSTD_DCtx_loadDictionary
pZSTD_DCtx_loadDictionary ZSTD_DCtx_loadDictionary;
Undocumented in source.
ZSTD_DCtx_refDDict
pZSTD_DCtx_refDDict ZSTD_DCtx_refDDict;
Undocumented in source.
ZSTD_DCtx_refPrefix
pZSTD_DCtx_refPrefix ZSTD_DCtx_refPrefix;
Undocumented in source.
ZSTD_DCtx_reset
pZSTD_DCtx_reset ZSTD_DCtx_reset;
Undocumented in source.
ZSTD_DStreamInSize
pZSTD_DStreamInSize ZSTD_DStreamInSize;
Undocumented in source.
ZSTD_DStreamOutSize
pZSTD_DStreamOutSize ZSTD_DStreamOutSize;
Undocumented in source.
ZSTD_cParam_getBounds
pZSTD_cParam_getBounds ZSTD_cParam_getBounds;
Undocumented in source.
ZSTD_compress
pZSTD_compress ZSTD_compress;
Undocumented in source.
ZSTD_compress2
pZSTD_compress2 ZSTD_compress2;
Undocumented in source.
ZSTD_compressBound
pZSTD_compressBound ZSTD_compressBound;
Undocumented in source.
ZSTD_compressCCtx
pZSTD_compressCCtx ZSTD_compressCCtx;
Undocumented in source.
ZSTD_compressStream
pZSTD_compressStream ZSTD_compressStream;
Undocumented in source.
ZSTD_compressStream2
pZSTD_compressStream2 ZSTD_compressStream2;
Undocumented in source.
ZSTD_compress_usingCDict
pZSTD_compress_usingCDict ZSTD_compress_usingCDict;
Undocumented in source.
ZSTD_compress_usingDict
pZSTD_compress_usingDict ZSTD_compress_usingDict;
Undocumented in source.
ZSTD_createCCtx
pZSTD_createCCtx ZSTD_createCCtx;
Undocumented in source.
ZSTD_createCDict
pZSTD_createCDict ZSTD_createCDict;
Undocumented in source.
ZSTD_createCStream
pZSTD_createCStream ZSTD_createCStream;
Undocumented in source.
ZSTD_createDCtx
pZSTD_createDCtx ZSTD_createDCtx;
Undocumented in source.
ZSTD_createDDict
pZSTD_createDDict ZSTD_createDDict;
Undocumented in source.
ZSTD_createDStream
pZSTD_createDStream ZSTD_createDStream;
Undocumented in source.
ZSTD_decompress
pZSTD_decompress ZSTD_decompress;
Undocumented in source.
ZSTD_decompressDCtx
pZSTD_decompressDCtx ZSTD_decompressDCtx;
Undocumented in source.
ZSTD_decompressStream
pZSTD_decompressStream ZSTD_decompressStream;
Undocumented in source.
ZSTD_decompress_usingDDict
pZSTD_decompress_usingDDict ZSTD_decompress_usingDDict;
Undocumented in source.
ZSTD_decompress_usingDict
pZSTD_decompress_usingDict ZSTD_decompress_usingDict;
Undocumented in source.
ZSTD_defaultCMem
ZSTD_customMem ZSTD_defaultCMem;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_endStream
pZSTD_endStream ZSTD_endStream;
Undocumented in source.
ZSTD_flushStream
pZSTD_flushStream ZSTD_flushStream;
Undocumented in source.
ZSTD_frameHeaderSize_max
size_t ZSTD_frameHeaderSize_max;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_frameHeaderSize_min
size_t ZSTD_frameHeaderSize_min;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_frameHeaderSize_prefix
size_t ZSTD_frameHeaderSize_prefix;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_freeCCtx
pZSTD_freeCCtx ZSTD_freeCCtx;
Undocumented in source.
ZSTD_freeCDict
pZSTD_freeCDict ZSTD_freeCDict;
Undocumented in source.
ZSTD_freeCStream
pZSTD_freeCStream ZSTD_freeCStream;
Undocumented in source.
ZSTD_freeDCtx
pZSTD_freeDCtx ZSTD_freeDCtx;
Undocumented in source.
ZSTD_freeDDict
pZSTD_freeDDict ZSTD_freeDDict;
Undocumented in source.
ZSTD_freeDStream
pZSTD_freeDStream ZSTD_freeDStream;
Undocumented in source.
ZSTD_getDecompressedSize
pZSTD_getDecompressedSize ZSTD_getDecompressedSize;
Undocumented in source.
ZSTD_getDictID_fromDDict
pZSTD_getDictID_fromDDict ZSTD_getDictID_fromDDict;
Undocumented in source.
ZSTD_getDictID_fromDict
pZSTD_getDictID_fromDict ZSTD_getDictID_fromDict;
Undocumented in source.
ZSTD_getErrorName
pZSTD_getErrorName ZSTD_getErrorName;
Undocumented in source.
ZSTD_getFrameContentSize
pZSTD_getFrameContentSize ZSTD_getFrameContentSize;
Undocumented in source.
ZSTD_initCStream
pZSTD_initCStream ZSTD_initCStream;
Undocumented in source.
ZSTD_initDStream
pZSTD_initDStream ZSTD_initDStream;
Undocumented in source.
ZSTD_isError
pZSTD_isError ZSTD_isError;
Undocumented in source.
ZSTD_maxCLevel
pZSTD_maxCLevel ZSTD_maxCLevel;
Undocumented in source.
ZSTD_sizeof_CCtx
pZSTD_sizeof_CCtx ZSTD_sizeof_CCtx;
Undocumented in source.
ZSTD_sizeof_CDict
pZSTD_sizeof_CDict ZSTD_sizeof_CDict;
Undocumented in source.
ZSTD_sizeof_CStream
pZSTD_sizeof_CStream ZSTD_sizeof_CStream;
Undocumented in source.
ZSTD_sizeof_DCtx
pZSTD_sizeof_DCtx ZSTD_sizeof_DCtx;
Undocumented in source.
ZSTD_sizeof_DDict
pZSTD_sizeof_DDict ZSTD_sizeof_DDict;
Undocumented in source.
ZSTD_sizeof_DStream
pZSTD_sizeof_DStream ZSTD_sizeof_DStream;
Undocumented in source.
ZSTD_skippableHeaderSize
size_t ZSTD_skippableHeaderSize;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_versionNumber
pZSTD_versionNumber ZSTD_versionNumber;
Undocumented in source.
ZSTD_versionString
pZSTD_versionString ZSTD_versionString;
Undocumented in source.

Structs

ZSTD_CCtx_params_s
struct ZSTD_CCtx_params_s
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_CCtx_s
struct ZSTD_CCtx_s
Undocumented in source.
ZSTD_CDict_s
struct ZSTD_CDict_s
Undocumented in source.
ZSTD_DCtx_s
struct ZSTD_DCtx_s
Undocumented in source.
ZSTD_DDict_s
struct ZSTD_DDict_s
Undocumented in source.
ZSTD_bounds
struct ZSTD_bounds
Undocumented in source.
ZSTD_compressionParameters
struct ZSTD_compressionParameters
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_customMem
struct ZSTD_customMem
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_frameHeader
struct ZSTD_frameHeader
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_frameParameters
struct ZSTD_frameParameters
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZSTD_frameProgression
struct ZSTD_frameProgression
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.
ZSTD_outBuffer_s
struct ZSTD_outBuffer_s
Undocumented in source.
ZSTD_parameters
struct ZSTD_parameters
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Meta