Home
last modified time | relevance | path

Searched refs:dCtx (Results 1 – 2 of 2) sorted by relevance

/external/lz4/tests/
Dframetest.c183 LZ4F_decompressionContext_t dCtx = NULL; in basicTests() local
211 CHECK ( LZ4F_createDecompressionContext(&dCtx, LZ4F_VERSION) ); in basicTests()
216 CHECK( LZ4F_getFrameInfo(dCtx, &frame_info, compressedBuffer, &avail_in) ); in basicTests()
220 CHECK( LZ4F_freeDecompressionContext(dCtx) ); in basicTests()
221 dCtx = NULL; in basicTests()
242 CHECK( LZ4F_createDecompressionContext(&dCtx, LZ4F_VERSION) ); in basicTests()
245 …CHECK( LZ4F_decompress(dCtx, decodedBuffer, &decodedBufferSize, compressedBuffer, &compressedBuffe… in basicTests()
259 CHECK_V(decResult, LZ4F_decompress(dCtx, op, &oSize, cBuff, &iSize, NULL)); in basicTests()
269 decResult = LZ4F_decompress(dCtx, op, &oSize, cBuff, &iSize, NULL); in basicTests()
283 CHECK( LZ4F_decompress(dCtx, NULL, &oSize, ip, &iSize, NULL) ); in basicTests()
[all …]
/external/lz4/programs/
Dlz4io.c857 LZ4F_decompressionContext_t dCtx; member
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()
915 …nextToLoad = LZ4F_decompress_usingDict(ress.dCtx, ress.dstBuffer, &outSize, ress.srcBuffer, &inSiz… in LZ4IO_decompressLZ4F()
934 …nextToLoad = LZ4F_decompress_usingDict(ress.dCtx, ress.dstBuffer, &decodedBytes, (char*)(ress.srcB… in LZ4IO_decompressLZ4F()