Searched refs:FSE_isError (Results 1 – 8 of 8) sorted by relevance
/reactos/drivers/filesystems/btrfs/zstd/ |
H A D | entropy_common.c | 31 unsigned FSE_isError(size_t code) { return ERR_isError(code); } in FSE_isError() function 62 if (FSE_isError(countSize)) return countSize; in FSE_readNCount() 183 if (FSE_isError(oSize)) return oSize; in HUF_readStats()
|
H A D | fse_decompress.c | 33 #define FSE_isError ERR_isError macro 267 if (FSE_isError(NCountLength)) return NCountLength; in FSE_decompress_wksp()
|
H A D | fse_compress.c | 35 #define FSE_isError ERR_isError macro 477 if (FSE_isError(errorCode)) return errorCode; in FSE_normalizeCount() 571 if (FSE_isError(initError)) return 0; /* not enough space available to write a bitstream */ } in FSE_compress_usingCTable_generic()
|
H A D | zstd_internal.h | 47 #define FSE_isError ERR_isError macro
|
H A D | fse.h | 90 FSE_PUBLIC_API unsigned FSE_isError(size_t code); /* tells if a return value is an error …
|
H A D | zstd_decompress.c | 1088 RETURN_ERROR_IF(FSE_isError(offcodeHeaderSize), dictionary_corrupted, ""); in ZSTD_loadDEntropy() 1101 RETURN_ERROR_IF(FSE_isError(matchlengthHeaderSize), dictionary_corrupted, ""); in ZSTD_loadDEntropy() 1114 RETURN_ERROR_IF(FSE_isError(litlengthHeaderSize), dictionary_corrupted, ""); in ZSTD_loadDEntropy()
|
H A D | zstd_compress.c | 2928 RETURN_ERROR_IF(FSE_isError(offcodeHeaderSize), dictionary_corrupted, ""); in ZSTD_loadCEntropy() 2932 RETURN_ERROR_IF(FSE_isError(FSE_buildCTable_wksp( in ZSTD_loadCEntropy() 2943 RETURN_ERROR_IF(FSE_isError(matchlengthHeaderSize), dictionary_corrupted, ""); in ZSTD_loadCEntropy() 2947 RETURN_ERROR_IF(FSE_isError(FSE_buildCTable_wksp( in ZSTD_loadCEntropy() 2958 RETURN_ERROR_IF(FSE_isError(litlengthHeaderSize), dictionary_corrupted, ""); in ZSTD_loadCEntropy() 2962 RETURN_ERROR_IF(FSE_isError(FSE_buildCTable_wksp( in ZSTD_loadCEntropy()
|
H A D | zstd_decompress_block.c | 468 RETURN_ERROR_IF(FSE_isError(headerSize), corruption_detected, ""); in ZSTD_buildSeqTable()
|