ReactOS
0.4.15-dev-1632-g4e289ce
|
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 68 of file zstd_common.c.
Referenced by ZSTD_createCDict_advanced(), ZSTD_decompressStream(), ZSTD_freeCCtx(), ZSTD_freeCCtxContent(), ZSTD_freeCCtxParams(), ZSTD_freeCDict(), ZSTD_freeDCtx(), ZSTD_freeDDict(), and ZSTD_resetCCtx_internal().
ZSTD_ErrorCode ZSTD_getErrorCode | ( | size_t | code | ) |
ZSTD_getError() : convert a size_t
function result into a proper ZSTD_errorCode enum
Definition at line 43 of file zstd_common.c.
Referenced by ZSTD_decompressMultiFrame().
ZSTD_getErrorName() : provides error code string from function result (useful for debugging)
Definition at line 39 of file zstd_common.c.
Referenced by zstd_compress(), and zstd_decompress().
const char* ZSTD_getErrorString | ( | ZSTD_ErrorCode | code | ) |
ZSTD_getErrorString() : provides error code string from enum
Definition at line 47 of file zstd_common.c.
ZSTD_isError() : tells if a return value is an error code
Definition at line 35 of file zstd_common.c.
Definition at line 54 of file zstd_common.c.
Referenced by ZSTD_createCCtx_advanced(), ZSTD_createCDict_advanced(), ZSTD_createDCtx_advanced(), ZSTD_createDDict_advanced(), ZSTD_decompressStream(), ZSTD_initCDict_internal(), ZSTD_initDDict_internal(), and ZSTD_resetCCtx_internal().
Definition at line 27 of file zstd_common.c.