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

  /external/lz4/tests/
frametest.c 176 LZ4F_decompressionContext_t dCtx = NULL;
204 { LZ4F_errorCode_t const errorCode = LZ4F_createDecompressionContext(&dCtx, LZ4F_VERSION);
210 LZ4F_errorCode_t const errorCode = LZ4F_getFrameInfo(dCtx, &frame_info, compressedBuffer, &avail_in);
215 { LZ4F_errorCode_t const errorCode = LZ4F_freeDecompressionContext(dCtx);
217 dCtx = NULL;
232 LZ4F_errorCode_t errorCode = LZ4F_createDecompressionContext(&dCtx, LZ4F_VERSION);
236 { size_t const decompressError = LZ4F_decompress(dCtx, decodedBuffer, &decodedBufferSize, compressedBuffer, &compressedBufferSize, NULL);
251 decResult = LZ4F_decompress(dCtx, op, &oSize, cBuff, &iSize, NULL);
262 decResult = LZ4F_decompress(dCtx, op, &oSize, cBuff, &iSize, NULL);
275 errorCode = LZ4F_decompress(dCtx, NULL, &oSize, ip, &iSize, NULL)
    [all...]
  /external/lz4/programs/
lz4io.c 756 LZ4F_decompressionContext_t dCtx;
765 LZ4F_errorCode_t const errorCode = LZ4F_createDecompressionContext(&ress.dCtx, LZ4F_VERSION);
781 LZ4F_errorCode_t errorCode = LZ4F_freeDecompressionContext(ress.dCtx);
798 nextToLoad = LZ4F_decompress(ress.dCtx, ress.dstBuffer, &outSize, ress.srcBuffer, &inSize, NULL);
817 nextToLoad = LZ4F_decompress(ress.dCtx, ress.dstBuffer, &decodedBytes, (char*)(ress.srcBuffer)+pos, &remaining, NULL);
    [all...]

Completed in 81 milliseconds