|
ReactOS 0.4.16-dev-1946-g52006dd
|


Go to the source code of this file.
Macros | |
| #define | ERR_STATIC static /* this version may generate warnings for unused static functions; disable the relevant warning */ |
| #define | PREFIX(name) ZSTD_error_##name |
| #define | ERROR(name) ZSTD_ERROR(name) |
| #define | ZSTD_ERROR(name) ((size_t)-PREFIX(name)) |
| #define | CHECK_V_F(e, f) size_t const e = f; if (ERR_isError(e)) return e |
| #define | CHECK_F(f) { CHECK_V_F(_var_err__, f); } |
Typedefs | |
| typedef ZSTD_ErrorCode | ERR_enum |
Functions | |
| ERR_STATIC unsigned | ERR_isError (size_t code) |
| ERR_STATIC ERR_enum | ERR_getErrorCode (size_t code) |
| const char * | ERR_getErrorString (ERR_enum code) |
| ERR_STATIC const char * | ERR_getErrorName (size_t code) |
Definition at line 61 of file error_private.h.
| #define ERR_STATIC static /* this version may generate warnings for unused static functions; disable the relevant warning */ |
Definition at line 38 of file error_private.h.
| #define ERROR | ( | name | ) | ZSTD_ERROR(name) |
Definition at line 53 of file error_private.h.
Definition at line 46 of file error_private.h.
| typedef ZSTD_ErrorCode ERR_enum |
Definition at line 45 of file error_private.h.
| ERR_STATIC ERR_enum ERR_getErrorCode | ( | size_t | code | ) |
Definition at line 58 of file error_private.h.
Referenced by ERR_getErrorName(), and ZSTD_getErrorCode().
| ERR_STATIC const char * ERR_getErrorName | ( | size_t | code | ) |
Definition at line 71 of file error_private.h.
Referenced by FSE_getErrorName(), HUF_getErrorName(), and ZSTD_getErrorName().
Definition at line 15 of file error_private.c.
Referenced by ERR_getErrorName(), and ZSTD_getErrorString().
| ERR_STATIC unsigned ERR_isError | ( | size_t | code | ) |
Definition at line 56 of file error_private.h.
Referenced by ERR_getErrorCode(), FSE_isError(), HIST_isError(), HUF_isError(), ZSTD_compressLiterals(), ZSTD_compressSubBlock_literal(), ZSTD_encodeSequences_body(), and ZSTD_isError().