Home
last modified time | relevance | path

Searched refs:FSE_isError (Results 1 – 8 of 8) sorted by relevance

/linux-6.15/lib/zstd/common/
H A Dentropy_common.c32 unsigned FSE_isError(size_t code) { return ERR_isError(code); } in FSE_isError() function
64 if (FSE_isError(countSize)) return countSize; in FSE_readNCount_body()
274 if (FSE_isError(oSize)) return oSize; in HUF_readStats_body()
H A Dfse_decompress.c33 #define FSE_isError ERR_isError macro
267 if (FSE_isError(NCountLength)) return NCountLength; in FSE_decompress_wksp_body()
H A Dzstd_internal.h39 #define FSE_isError ERR_isError macro
H A Dfse.h57 FSE_PUBLIC_API unsigned FSE_isError(size_t code); /* tells if a return value is an error …
/linux-6.15/lib/zstd/compress/
H A Dfse_compress.c36 #define FSE_isError ERR_isError macro
506 if (FSE_isError(errorCode)) return errorCode; in FSE_normalizeCount()
566 if (FSE_isError(initError)) return 0; /* not enough space available to write a bitstream */ } in FSE_compress_usingCTable_generic()
H A Dzstd_compress.c5001 RETURN_ERROR_IF(FSE_isError(offcodeHeaderSize), dictionary_corrupted, ""); in ZSTD_loadCEntropy()
5004 RETURN_ERROR_IF(FSE_isError(FSE_buildCTable_wksp( in ZSTD_loadCEntropy()
5016 RETURN_ERROR_IF(FSE_isError(matchlengthHeaderSize), dictionary_corrupted, ""); in ZSTD_loadCEntropy()
5018 RETURN_ERROR_IF(FSE_isError(FSE_buildCTable_wksp( in ZSTD_loadCEntropy()
5030 RETURN_ERROR_IF(FSE_isError(litlengthHeaderSize), dictionary_corrupted, ""); in ZSTD_loadCEntropy()
5032 RETURN_ERROR_IF(FSE_isError(FSE_buildCTable_wksp( in ZSTD_loadCEntropy()
/linux-6.15/lib/zstd/decompress/
H A Dzstd_decompress.c1410 RETURN_ERROR_IF(FSE_isError(offcodeHeaderSize), dictionary_corrupted, ""); in ZSTD_loadDEntropy()
1425 RETURN_ERROR_IF(FSE_isError(matchlengthHeaderSize), dictionary_corrupted, ""); in ZSTD_loadDEntropy()
1440 RETURN_ERROR_IF(FSE_isError(litlengthHeaderSize), dictionary_corrupted, ""); in ZSTD_loadDEntropy()
H A Dzstd_decompress_block.c684 RETURN_ERROR_IF(FSE_isError(headerSize), corruption_detected, ""); in ZSTD_buildSeqTable()