Home
last modified time | relevance | path

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

/third_party/lz4/tests/
Dframetest.c229 LZ4F_decompressionContext_t dCtx = NULL; in basicTests() local
275 CHECK ( LZ4F_createDecompressionContext(&dCtx, LZ4F_VERSION) ); in basicTests()
283 CHECK( LZ4F_getFrameInfo(dCtx, &frame_info, compressedBuffer, &avail_in) ); in basicTests()
288 CHECK( LZ4F_freeDecompressionContext(dCtx) ); in basicTests()
289 dCtx = NULL; in basicTests()
310 CHECK( LZ4F_createDecompressionContext(&dCtx, LZ4F_VERSION) ); in basicTests()
313 …CHECK( LZ4F_decompress(dCtx, decodedBuffer, &decodedBufferSize, compressedBuffer, &compressedBuffe… in basicTests()
327 CHECK_V(decResult, LZ4F_decompress(dCtx, op, &oSize, cBuff, &iSize, NULL)); in basicTests()
337 decResult = LZ4F_decompress(dCtx, op, &oSize, cBuff, &iSize, NULL); in basicTests()
351 CHECK( LZ4F_decompress(dCtx, NULL, &oSize, ip, &iSize, NULL) ); in basicTests()
[all …]
/third_party/lz4/programs/
Dlz4io.c1018 LZ4F_decompressionContext_t dCtx; member
1041 LZ4F_errorCode_t const errorCode = LZ4F_createDecompressionContext(&ress.dCtx, LZ4F_VERSION); in LZ4IO_createDResources()
1059 LZ4F_errorCode_t errorCode = LZ4F_freeDecompressionContext(ress.dCtx); in LZ4IO_freeDResources()
1084 nextToLoad = LZ4F_decompress_usingDict(ress.dCtx, in LZ4IO_decompressLZ4F()
1108 nextToLoad = LZ4F_decompress_usingDict(ress.dCtx, in LZ4IO_decompressLZ4F()