Searched refs:dCtx (Results 1 – 2 of 2) sorted by relevance
/external/lz4/tests/ |
D | frametest.c | 176 LZ4F_decompressionContext_t dCtx = NULL; in basicTests() local 204 { LZ4F_errorCode_t const errorCode = LZ4F_createDecompressionContext(&dCtx, LZ4F_VERSION); in basicTests() 210 …LZ4F_errorCode_t const errorCode = LZ4F_getFrameInfo(dCtx, &frame_info, compressedBuffer, &avail_i… in basicTests() 215 { LZ4F_errorCode_t const errorCode = LZ4F_freeDecompressionContext(dCtx); in basicTests() 217 dCtx = NULL; in basicTests() 232 LZ4F_errorCode_t errorCode = LZ4F_createDecompressionContext(&dCtx, LZ4F_VERSION); in basicTests() 236 …{ size_t const decompressError = LZ4F_decompress(dCtx, decodedBuffer, &decodedBufferSize, compress… in basicTests() 251 decResult = LZ4F_decompress(dCtx, op, &oSize, cBuff, &iSize, NULL); in basicTests() 262 decResult = LZ4F_decompress(dCtx, op, &oSize, cBuff, &iSize, NULL); in basicTests() 275 errorCode = LZ4F_decompress(dCtx, NULL, &oSize, ip, &iSize, NULL); in basicTests() [all …]
|
/external/lz4/programs/ |
D | lz4io.c | 756 LZ4F_decompressionContext_t dCtx; member 765 LZ4F_errorCode_t const errorCode = LZ4F_createDecompressionContext(&ress.dCtx, LZ4F_VERSION); in LZ4IO_createDResources() 781 LZ4F_errorCode_t errorCode = LZ4F_freeDecompressionContext(ress.dCtx); in LZ4IO_freeDResources() 798 … nextToLoad = LZ4F_decompress(ress.dCtx, ress.dstBuffer, &outSize, ress.srcBuffer, &inSize, NULL); in LZ4IO_decompressLZ4F() 817 …nextToLoad = LZ4F_decompress(ress.dCtx, ress.dstBuffer, &decodedBytes, (char*)(ress.srcBuffer)+pos… in LZ4IO_decompressLZ4F()
|