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

/freebsd-12-stable/sys/contrib/zstd/lib/common/
H A Dfse_decompress.c51 #define FSE_isError ERR_isError macro
55 #define CHECK_F(f) { size_t const e = f; if (FSE_isError(e)) return e; }
287 if (FSE_isError(NCountLength)) return NCountLength;
H A Dentropy_common.c51 unsigned FSE_isError(size_t code) { return ERR_isError(code); } function
188 if (FSE_isError(oSize)) return oSize;
H A Dfse.h84 if FSE_isError(return), compression failed (more details using FSE_getErrorName())
93 or an error code, which can be tested using FSE_isError() .
109 FSE_PUBLIC_API unsigned FSE_isError(size_t code); /* tells if a return value is an error code */
122 if FSE_isError(return), it's an error code.
156 Can also return an error code, which can be tested with FSE_isError(). */
169 or an errorCode, which can be tested using FSE_isError() */
180 or an errorCode, which can be tested using FSE_isError(). */
192 @return : 0, or an errorCode, which can be tested using FSE_isError() */
199 or an errorCode, which can be tested using FSE_isError() */
211 If there is an error, the function will return an ErrorCode (which can be tested using FSE_isError())
[all...]
/freebsd-12-stable/sys/contrib/zstd/lib/legacy/
H A Dzstd_v01.c471 static unsigned FSE_isError(size_t code) { return (code > (size_t)(-FSE_ERROR_maxCode)); } function
829 if (FSE_isError(errorCode)) return errorCode;
909 if (FSE_isError(errorCode)) return errorCode;
915 if (FSE_isError(errorCode)) return errorCode;
1000 if (FSE_isError(oSize)) return oSize;
1097 if (FSE_isError(errorCode)) return errorCode;
1099 if (FSE_isError(errorCode)) return errorCode;
1101 if (FSE_isError(errorCode)) return errorCode;
1103 if (FSE_isError(errorCode)) return errorCode;
1173 if (FSE_isError(errorCod
[all...]
H A Dzstd_v03.c1157 static unsigned FSE_isError(size_t code) { return ERR_isError(code); } function
1344 if (FSE_isError(errorCode)) return errorCode;
1424 if (FSE_isError(errorCode)) return errorCode;
1430 if (FSE_isError(errorCode)) return errorCode;
1570 if (FSE_isError(oSize)) return oSize;
2600 if (FSE_isError(headerSize)) return ERROR(GENERIC);
2619 if (FSE_isError(headerSize)) return ERROR(GENERIC);
2637 if (FSE_isError(headerSize)) return ERROR(GENERIC);
H A Dzstd_v04.c486 or an error code, which can be tested using FSE_isError()
498 static unsigned FSE_isError(size_t code); /* tells if a return value is an error code */
530 or an errorCode, which can be tested using FSE_isError()
543 or an errorCode, which can be tested using FSE_isError() */
551 or an errorCode, which can be tested using FSE_isError() */
569 If there is an error, the function will return an error code, which can be tested using FSE_isError().
574 If there is an error, the function will return an error code, which can be tested using FSE_isError().
579 If there is an error, the function will return an error code, which can be tested using FSE_isError(). (ex: dst buffer too small)
1196 static unsigned FSE_isError(size_t code) { return ERR_isError(code); } function
1385 if (FSE_isError(errorCod
[all...]
H A Dzstd_v02.c1156 static unsigned FSE_isError(size_t code) { return ERR_isError(code); } function
1343 if (FSE_isError(errorCode)) return errorCode;
1423 if (FSE_isError(errorCode)) return errorCode;
1429 if (FSE_isError(errorCode)) return errorCode;
1573 if (FSE_isError(oSize)) return oSize;
2959 if (FSE_isError(headerSize)) return ERROR(GENERIC);
2978 if (FSE_isError(headerSize)) return ERROR(GENERIC);
2996 if (FSE_isError(headerSize)) return ERROR(GENERIC);
/freebsd-12-stable/sys/contrib/zstd/lib/dictBuilder/
H A Dzdict.c770 if (FSE_isError(errorCode)) {
779 if (FSE_isError(errorCode)) {
788 if (FSE_isError(errorCode)) {
808 if (FSE_isError(ohSize)) {
819 if (FSE_isError(mhSize)) {
830 if (FSE_isError(lhSize)) {
/freebsd-12-stable/sys/contrib/zstd/lib/compress/
H A Dfse_compress.c51 #define FSE_isError ERR_isError macro
622 if (FSE_isError(errorCode)) return errorCode;
716 if (FSE_isError(initError)) return 0; /* not enough space available to write a bitstream */ }
H A Dzstd_compress.c1545 if (FSE_isError(NCountSize)) return NCountSize;
2282 if (FSE_isError(offcodeHeaderSize)) return ERROR(dictionary_corrupted);
2293 if (FSE_isError(matchlengthHeaderSize)) return ERROR(dictionary_corrupted);
2305 if (FSE_isError(litlengthHeaderSize)) return ERROR(dictionary_corrupted);
/freebsd-12-stable/sys/contrib/zstd/tests/
H A Ddecodecorpus.c859 if (FSE_isError(NCountSize)) return ERROR(GENERIC);
886 if (FSE_isError(NCountSize)) return ERROR(GENERIC);
915 if (FSE_isError(NCountSize)) return ERROR(GENERIC);
/freebsd-12-stable/sys/contrib/zstd/lib/decompress/
H A Dzstd_decompress.c65 #define FSE_isError ERR_isError macro
896 if (FSE_isError(headerSize)) return ERROR(corruption_detected);
2190 if (FSE_isError(offcodeHeaderSize)) return ERROR(dictionary_corrupted);
2203 if (FSE_isError(matchlengthHeaderSize)) return ERROR(dictionary_corrupted);
2216 if (FSE_isError(litlengthHeaderSize)) return ERROR(dictionary_corrupted);

Completed in 115 milliseconds