Home
last modified time | relevance | path

Searched refs:ERR_isError (Results 1 – 13 of 13) sorted by relevance

/reactos/drivers/filesystems/btrfs/zstd/
H A Derror_private.h56 ERR_STATIC unsigned ERR_isError(size_t code) { return (code > ERROR(maxCode)); } in ERR_isError() function
58 ERR_STATIC ERR_enum ERR_getErrorCode(size_t code) { if (!ERR_isError(code)) return (ERR_enum)0; ret… in ERR_getErrorCode()
61 #define CHECK_V_F(e, f) size_t const e = f; if (ERR_isError(e)) return e
H A Dzstd_internal.h46 #define ZSTD_isError ERR_isError /* for inlining */
47 #define FSE_isError ERR_isError
48 #define HUF_isError ERR_isError
124 if (ERR_isError(err_code)) { \
H A Dentropy_common.c31 unsigned FSE_isError(size_t code) { return ERR_isError(code); } in FSE_isError()
34 unsigned HUF_isError(size_t code) { return ERR_isError(code); } in HUF_isError()
H A Dzstd_common.c37 unsigned ZSTD_isError(size_t code) { return ERR_isError(code); } in ZSTD_isError()
H A Dzstd_compress_literals.c120 if ((cLitSize==0) | (cLitSize >= srcSize - minGain) | ERR_isError(cLitSize)) { in ZSTD_compressLiterals()
H A Dhist.c24 unsigned HIST_isError(size_t code) { return ERR_isError(code); } in HIST_isError()
H A Dfse_decompress.c33 #define FSE_isError ERR_isError
H A Dzstd_compress_sequences.c281 ERR_isError(BIT_initCStream(&blockStream, dst, dstCapacity)), in ZSTD_encodeSequences_body()
H A Dzstd_decompress_block.c1021 ERR_isError(BIT_initDStream(&seqState.DStream, ip, iend-ip)), in ZSTD_decompressSequences_body()
1164 ERR_isError(BIT_initDStream(&seqState.DStream, ip, iend-ip)), in ZSTD_decompressSequencesLong_body()
H A Dfse_compress.c35 #define FSE_isError ERR_isError
H A Dhuf_compress.c41 #define HUF_isError ERR_isError
H A Dzstd_compress_superblock.c362 if (cSize == 0 || ERR_isError(cSize)) { in ZSTD_compressSubBlock_literal()
H A Dhuf_decompress.c43 #define HUF_isError ERR_isError