Lines Matching defs:code
11 * - Redistributions of source code must retain the above copyright
290 unsigned LZ4F_isError(LZ4F_errorCode_t code)
292 return (code > (LZ4F_errorCode_t)(-LZ4F_ERROR_maxCode));
295 const char* LZ4F_getErrorName(LZ4F_errorCode_t code)
297 static const char* codeError = "Unspecified error code";
298 if (LZ4F_isError(code)) return LZ4F_errorStrings[-(int)(code)];
308 static LZ4F_errorCode_t LZ4F_returnErrorCode(LZ4F_errorCodes code)
312 return (LZ4F_errorCode_t)-(ptrdiff_t)code;
418 * or an error code if it fails (can be tested using LZ4F_isError())
473 * or an error code if it fails (can be tested using LZ4F_isError())
675 * or an error code (can be tested using LZ4F_isError())
793 * or an error code (can be tested using LZ4F_isError())
927 * or an error code if it fails (which can be tested using LZ4F_isError())
1057 * or an error code if it fails (which can be tested using LZ4F_isError())
1081 * or an error code if it fails (which can be tested using LZ4F_isError())
1101 * The function outputs an error code if it fails (can be tested using LZ4F_isError())
1148 * or an error code if it fails (can be tested using LZ4F_isError())
1289 * or an error code (testable with LZ4F_isError())
1385 * or an error code, which can be tested using LZ4F_isError()
1424 * or an error code which can be tested using LZ4F_isError()
1554 * If decompression failed, @return is an error code which can be tested using LZ4F_isError().