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

/linux-master/lib/zstd/common/
H A Dentropy_common.c31 unsigned FSE_isError(size_t code) { return ERR_isError(code); } function
80 if (FSE_isError(countSize)) return countSize;
290 if (FSE_isError(oSize)) return oSize;
H A Dfse_decompress.c32 #define FSE_isError ERR_isError macro
337 if (FSE_isError(NCountLength)) return NCountLength;
H A Dzstd_internal.h40 #define FSE_isError ERR_isError macro
H A Dfse.h62 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...]
/linux-master/lib/zstd/compress/
H A Dfse_compress.c34 #define FSE_isError ERR_isError macro
513 if (FSE_isError(errorCode)) return errorCode;
607 if (FSE_isError(initError)) return 0; /* not enough space available to write a bitstream */ }
H A Dzstd_compress.c4250 RETURN_ERROR_IF(FSE_isError(offcodeHeaderSize), dictionary_corrupted, "");
4253 RETURN_ERROR_IF(FSE_isError(FSE_buildCTable_wksp(
4265 RETURN_ERROR_IF(FSE_isError(matchlengthHeaderSize), dictionary_corrupted, "");
4267 RETURN_ERROR_IF(FSE_isError(FSE_buildCTable_wksp(
4279 RETURN_ERROR_IF(FSE_isError(litlengthHeaderSize), dictionary_corrupted, "");
4281 RETURN_ERROR_IF(FSE_isError(FSE_buildCTable_wksp(
/linux-master/lib/zstd/decompress/
H A Dzstd_decompress.c1319 RETURN_ERROR_IF(FSE_isError(offcodeHeaderSize), dictionary_corrupted, "");
1334 RETURN_ERROR_IF(FSE_isError(matchlengthHeaderSize), dictionary_corrupted, "");
1349 RETURN_ERROR_IF(FSE_isError(litlengthHeaderSize), dictionary_corrupted, "");
H A Dzstd_decompress_block.c641 RETURN_ERROR_IF(FSE_isError(headerSize), corruption_detected, "");

Completed in 249 milliseconds