Home
last modified time | relevance | path

Searched refs:ZSTD_ErrorCode (Results 1 – 5 of 5) sorted by relevance

/freebsd-12.1/sys/contrib/zstd/lib/common/
H A Dzstd_errors.h79 } ZSTD_ErrorCode; typedef
84 ZSTDERRORLIB_API ZSTD_ErrorCode ZSTD_getErrorCode(size_t functionResult);
85 ZSTDERRORLIB_API const char* ZSTD_getErrorString(ZSTD_ErrorCode code); /**< Same as ZSTD_getError…
H A Dzstd_common.c43 ZSTD_ErrorCode ZSTD_getErrorCode(size_t code) { return ERR_getErrorCode(code); } in ZSTD_getErrorCode()
47 const char* ZSTD_getErrorString(ZSTD_ErrorCode code) { return ERR_getErrorString(code); } in ZSTD_getErrorString()
H A Derror_private.h45 typedef ZSTD_ErrorCode ERR_enum;
/freebsd-12.1/sys/contrib/zstd/lib/
H A DREADME.md29 into an `ZSTD_ErrorCode`, for accurate error handling.
/freebsd-12.1/sys/contrib/zstd/tests/
H A Dfuzzer.c1258 …if (strcmp("No error detected", ZSTD_getErrorName((ZSTD_ErrorCode)(0-ZSTD_error_no_error))) != 0) … in basicUnitTests()
1260 …if (strcmp("Unspecified error code", ZSTD_getErrorString((ZSTD_ErrorCode)(0-ZSTD_error_GENERIC))) … in basicUnitTests()