Searched refs:FSE_isError (Results 1 – 8 of 8) sorted by relevance
/linux-6.12.1/lib/zstd/common/ |
D | entropy_common.c | 31 unsigned FSE_isError(size_t code) { return ERR_isError(code); } in FSE_isError() function 80 if (FSE_isError(countSize)) return countSize; in FSE_readNCount_body() 290 if (FSE_isError(oSize)) return oSize; in HUF_readStats_body()
|
D | fse_decompress.c | 32 #define FSE_isError ERR_isError macro 337 if (FSE_isError(NCountLength)) return NCountLength; in FSE_decompress_wksp_body()
|
D | zstd_internal.h | 40 #define FSE_isError ERR_isError macro
|
D | fse.h | 87 FSE_PUBLIC_API unsigned FSE_isError(size_t code); /* tells if a return value is an error …
|
/linux-6.12.1/lib/zstd/compress/ |
D | fse_compress.c | 34 #define FSE_isError ERR_isError macro 513 if (FSE_isError(errorCode)) return errorCode; in FSE_normalizeCount() 607 if (FSE_isError(initError)) return 0; /* not enough space available to write a bitstream */ } in FSE_compress_usingCTable_generic()
|
D | zstd_compress.c | 4250 RETURN_ERROR_IF(FSE_isError(offcodeHeaderSize), dictionary_corrupted, ""); in ZSTD_loadCEntropy() 4253 RETURN_ERROR_IF(FSE_isError(FSE_buildCTable_wksp( in ZSTD_loadCEntropy() 4265 RETURN_ERROR_IF(FSE_isError(matchlengthHeaderSize), dictionary_corrupted, ""); in ZSTD_loadCEntropy() 4267 RETURN_ERROR_IF(FSE_isError(FSE_buildCTable_wksp( in ZSTD_loadCEntropy() 4279 RETURN_ERROR_IF(FSE_isError(litlengthHeaderSize), dictionary_corrupted, ""); in ZSTD_loadCEntropy() 4281 RETURN_ERROR_IF(FSE_isError(FSE_buildCTable_wksp( in ZSTD_loadCEntropy()
|
/linux-6.12.1/lib/zstd/decompress/ |
D | zstd_decompress.c | 1319 RETURN_ERROR_IF(FSE_isError(offcodeHeaderSize), dictionary_corrupted, ""); in ZSTD_loadDEntropy() 1334 RETURN_ERROR_IF(FSE_isError(matchlengthHeaderSize), dictionary_corrupted, ""); in ZSTD_loadDEntropy() 1349 RETURN_ERROR_IF(FSE_isError(litlengthHeaderSize), dictionary_corrupted, ""); in ZSTD_loadDEntropy()
|
D | zstd_decompress_block.c | 641 RETURN_ERROR_IF(FSE_isError(headerSize), corruption_detected, ""); in ZSTD_buildSeqTable()
|