HomeSort by relevance Sort by last modified time
    Searched refs:LZ4F_errorCode_t (Results 1 - 4 of 4) sorted by null

  /external/lz4/lib/
lz4frame.h 57 typedef size_t LZ4F_errorCode_t;
59 unsigned LZ4F_isError(LZ4F_errorCode_t code);
60 const char* LZ4F_getErrorName(LZ4F_errorCode_t code); /* return error code string; useful for debugging */
116 LZ4F_errorCode_t LZ4F_createCompressionContext(LZ4F_compressionContext_t* LZ4F_compressionContextPtr, unsigned version);
117 LZ4F_errorCode_t LZ4F_freeCompressionContext(LZ4F_compressionContext_t LZ4F_compressionContext);
123 * If the result LZ4F_errorCode_t is not zero, there was an error during context creation.
193 LZ4F_errorCode_t LZ4F_createDecompressionContext(LZ4F_decompressionContext_t* ctxPtr, unsigned version);
194 LZ4F_errorCode_t LZ4F_freeDecompressionContext(LZ4F_decompressionContext_t ctx);
200 * If the result LZ4F_errorCode_t is not OK_NoError, there was an error during context creation.
lz4frame.c 164 U32 LZ4F_isError(LZ4F_errorCode_t code)
166 return (code > (LZ4F_errorCode_t)(-ERROR_maxCode));
169 const char* LZ4F_getErrorName(LZ4F_errorCode_t code)
264 LZ4F_errorCode_t errorCode;
325 * If the result LZ4F_errorCode_t is not OK_NoError, there was an error during context creation.
328 LZ4F_errorCode_t LZ4F_createCompressionContext(LZ4F_compressionContext_t* LZ4F_compressionContextPtr, unsigned version)
333 if (cctxPtr==NULL) return (LZ4F_errorCode_t)(-ERROR_allocation_failed);
344 LZ4F_errorCode_t LZ4F_freeCompressionContext(LZ4F_compressionContext_t LZ4F_compressionContext)
708 * If the result LZ4F_errorCode_t is not zero, there was an error during context creation.
711 LZ4F_errorCode_t LZ4F_createDecompressionContext(LZ4F_compressionContext_t* LZ4F_decompressionContextPtr, unsigned (…)
    [all...]
  /external/lz4/programs/
frametest.c 234 LZ4F_errorCode_t errorCode = LZ4F_createDecompressionContext(&dCtx, LZ4F_VERSION);
292 LZ4F_errorCode_t errorCode = LZ4F_createDecompressionContext(&dCtx, LZ4F_VERSION);
505 CHECK(LZ4F_isError(result), "Decompression failed (error %i:%s)", (int)result, LZ4F_getErrorName((LZ4F_errorCode_t)result));
lz4io.c 379 LZ4F_errorCode_t errorCode;
537 LZ4F_errorCode_t errorCode;

Completed in 1407 milliseconds