Searched refs:FSE_isError (Results 1 - 14 of 14) sorted by relevance
/kernel/linux/linux-5.10/lib/zstd/ |
H A D | entropy_common.c | 52 unsigned FSE_isError(size_t code) { return ERR_isError(code); } in FSE_isError() function 198 if (FSE_isError(oSize)) in HUF_readStats_wksp()
|
H A D | fse_decompress.c | 58 #define FSE_isError ERR_isError macro 313 if (FSE_isError(NCountLength)) in FSE_decompress_wksp()
|
H A D | fse_compress.c | 656 if (FSE_isError(errorCode)) in FSE_normalizeCount() 738 if (FSE_isError(initError)) in FSE_compress_usingCTable_generic()
|
H A D | fse.h | 72 FSE_PUBLIC_API unsigned FSE_isError(size_t code); /* tells if a return value is an error code */ 106 or an errorCode, which can be tested using FSE_isError() */ 117 or an errorCode, which can be tested using FSE_isError(). */ 128 or an errorCode, which can be tested using FSE_isError() */ 140 If there is an error, the function will return an ErrorCode (which can be tested using FSE_isError()). 154 If there is an error (ex: invalid tableLog value), the function will return an ErrorCode (which can be tested using FSE_isError()). 160 If there is an error, the function will return an ErrorCode (which can be tested using FSE_isError(); ex : buffer size too small). 165 If there is an error, both functions will return an ErrorCode (which can be tested using FSE_isError()). 171 If there is an error, the function will return an ErrorCode (which can be tested using FSE_isError()). 179 or an errorCode, which can be tested using FSE_isError() [all...] |
H A D | decompress.c | 46 #define FSE_isError ERR_isError macro 782 if (FSE_isError(headerSize)) in ZSTD_buildSeqTable() 1894 if (FSE_isError(offcodeHeaderSize)) in ZSTD_loadEntropy() 1906 if (FSE_isError(matchlengthHeaderSize)) in ZSTD_loadEntropy() 1918 if (FSE_isError(litlengthHeaderSize)) in ZSTD_loadEntropy()
|
H A D | compress.c | 673 if (FSE_isError(NCountSize)) in ZSTD_compressSequences_internal() 705 if (FSE_isError(NCountSize)) in ZSTD_compressSequences_internal() 737 if (FSE_isError(NCountSize)) in ZSTD_compressSequences_internal() 2647 if (FSE_isError(offcodeHeaderSize)) in ZSTD_loadZstdDictionary() 2661 if (FSE_isError(matchlengthHeaderSize)) in ZSTD_loadZstdDictionary() 2677 if (FSE_isError(litlengthHeaderSize)) in ZSTD_loadZstdDictionary()
|
/kernel/linux/linux-6.6/lib/zstd/common/ |
H A 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()
|
H A D | fse_decompress.c | 32 #define FSE_isError ERR_isError macro 337 if (FSE_isError(NCountLength)) return NCountLength; in FSE_decompress_wksp_body()
|
H A D | zstd_internal.h | 40 #define FSE_isError ERR_isError macro
|
H A D | fse.h | 62 if FSE_isError(return), compression failed (more details using FSE_getErrorName()) 71 or an error code, which can be tested using FSE_isError() . 87 FSE_PUBLIC_API unsigned FSE_isError(size_t code); /* tells if a return value is an error code */ 100 if FSE_isError(return), it's an error code. 144 or an errorCode, which can be tested using FSE_isError() */ 156 or an errorCode, which can be tested using FSE_isError(). */ 169 @return : 0, or an errorCode, which can be tested using FSE_isError() */ 176 or an errorCode, which can be tested using FSE_isError() */ 188 If there is an error, the function will return an ErrorCode (which can be tested using FSE_isError()). 202 If there is an error (ex: invalid tableLog value), the function will return an ErrorCode (which can be tested using FSE_isError()) [all...] |
/kernel/linux/linux-6.6/lib/zstd/compress/ |
H A 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()
|
H A 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()
|
/kernel/linux/linux-6.6/lib/zstd/decompress/ |
H A 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()
|
H A D | zstd_decompress_block.c | 641 RETURN_ERROR_IF(FSE_isError(headerSize), corruption_detected, ""); in ZSTD_buildSeqTable()
|
Completed in 35 milliseconds