ReactOS 0.4.16-dev-753-g705a985
|
Go to the source code of this file.
Functions | |
unsigned | ZSTD_versionNumber (void) |
const char * | ZSTD_versionString (void) |
unsigned | ZSTD_isError (size_t code) |
const char * | ZSTD_getErrorName (size_t code) |
ZSTD_ErrorCode | ZSTD_getErrorCode (size_t code) |
const char * | ZSTD_getErrorString (ZSTD_ErrorCode code) |
void * | ZSTD_malloc (size_t size, ZSTD_customMem customMem) |
void * | ZSTD_calloc (size_t size, ZSTD_customMem customMem) |
void | ZSTD_free (void *ptr, ZSTD_customMem customMem) |
Definition at line 61 of file zstd_common.c.
Referenced by ZSTD_createCCtxParams_advanced().
Definition at line 70 of file zstd_common.c.
Referenced by ZSTD_clearAllDicts(), ZSTD_createCDict_advanced(), ZSTD_cwksp_free(), ZSTD_decompressStream(), ZSTD_freeCCtx(), ZSTD_freeCCtxParams(), ZSTD_freeCDict(), ZSTD_freeDCtx(), ZSTD_freeDDict(), and ZSTD_getSequences().
ZSTD_ErrorCode ZSTD_getErrorCode | ( | size_t | code | ) |
ZSTD_getError() : convert a size_t
function result into a proper ZSTD_errorCode enum
Definition at line 45 of file zstd_common.c.
Referenced by ZSTD_decompressMultiFrame().
ZSTD_getErrorName() : provides error code string from function result (useful for debugging)
Definition at line 41 of file zstd_common.c.
Referenced by zstd_compress(), ZSTD_compressSubBlock_literal(), and zstd_decompress().
const char * ZSTD_getErrorString | ( | ZSTD_ErrorCode | code | ) |
ZSTD_getErrorString() : provides error code string from enum
Definition at line 49 of file zstd_common.c.
ZSTD_isError() : tells if a return value is an error code symbol is required for external callers
Definition at line 37 of file zstd_common.c.
Definition at line 56 of file zstd_common.c.
Referenced by ZSTD_CCtx_loadDictionary_advanced(), ZSTD_createCCtx_advanced(), ZSTD_createCDict_advanced(), ZSTD_createDCtx_advanced(), ZSTD_createDDict_advanced(), ZSTD_cwksp_create(), ZSTD_decompressStream(), ZSTD_getSequences(), and ZSTD_initDDict_internal().
Definition at line 27 of file zstd_common.c.