Home
last modified time | relevance | path

Searched refs:LZ4F_errorCode_t (Results 1 – 4 of 4) sorted by relevance

/external/lz4/lib/
Dlz4frame.h95 typedef size_t LZ4F_errorCode_t; typedef
97 LZ4FLIB_API unsigned LZ4F_isError(LZ4F_errorCode_t code); /**< tells when a function result is…
98 LZ4FLIB_API const char* LZ4F_getErrorName(LZ4F_errorCode_t code); /**< return error code string; …
244 LZ4FLIB_API LZ4F_errorCode_t LZ4F_createCompressionContext(LZ4F_cctx** cctxPtr, unsigned version);
245 LZ4FLIB_API LZ4F_errorCode_t LZ4F_freeCompressionContext(LZ4F_cctx* cctx);
340 LZ4FLIB_API LZ4F_errorCode_t LZ4F_createDecompressionContext(LZ4F_dctx** dctxPtr, unsigned version);
341 LZ4FLIB_API LZ4F_errorCode_t LZ4F_freeDecompressionContext(LZ4F_dctx* dctx);
Dlz4frame.c232 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()
[all …]
/external/lz4/programs/
Dlz4io.c497 LZ4F_errorCode_t const errorCode = LZ4F_createCompressionContext(&(ress.ctx), LZ4F_VERSION); in LZ4IO_createCResources()
520 { LZ4F_errorCode_t const errorCode = LZ4F_freeCompressionContext(ress.ctx); in LZ4IO_freeCResources()
879 LZ4F_errorCode_t const errorCode = LZ4F_createDecompressionContext(&ress.dCtx, LZ4F_VERSION); in LZ4IO_createDResources()
897 LZ4F_errorCode_t errorCode = LZ4F_freeDecompressionContext(ress.dCtx); in LZ4IO_freeDResources()
908 LZ4F_errorCode_t nextToLoad; in LZ4IO_decompressLZ4F()
/external/lz4/tests/
Dframetest.c172 #define CHECK(f) { LZ4F_errorCode_t const CHECK_V(err_ , f); }