Lines Matching refs:LZ4F_errorCode_t
232 unsigned LZ4F_isError(LZ4F_errorCode_t code) in LZ4F_isError()
234 return (code > (LZ4F_errorCode_t)(-LZ4F_ERROR_maxCode)); in LZ4F_isError()
237 const char* LZ4F_getErrorName(LZ4F_errorCode_t code) in LZ4F_getErrorName()
250 static LZ4F_errorCode_t err0r(LZ4F_errorCodes code) in err0r()
254 return (LZ4F_errorCode_t)-(ptrdiff_t)code; in err0r()
517 LZ4F_errorCode_t LZ4F_createCompressionContext(LZ4F_compressionContext_t* LZ4F_compressionContextPt… in LZ4F_createCompressionContext()
531 LZ4F_errorCode_t LZ4F_freeCompressionContext(LZ4F_compressionContext_t LZ4F_compressionContext) in LZ4F_freeCompressionContext()
1019 LZ4F_errorCode_t LZ4F_createDecompressionContext(LZ4F_dctx** LZ4F_decompressionContextPtr, unsigned… in LZ4F_createDecompressionContext()
1029 LZ4F_errorCode_t LZ4F_freeDecompressionContext(LZ4F_dctx* dctx) in LZ4F_freeDecompressionContext()
1031 LZ4F_errorCode_t result = LZ4F_OK_NoError; in LZ4F_freeDecompressionContext()
1033 result = (LZ4F_errorCode_t)dctx->dStage; in LZ4F_freeDecompressionContext()
1187 LZ4F_errorCode_t LZ4F_getFrameInfo(LZ4F_dctx* dctx, LZ4F_frameInfo_t* frameInfoPtr, in LZ4F_getFrameInfo()