Lines Matching refs:dCtx
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);
280 errorCode = LZ4F_getFrameInfo(dCtx, &fi, ip, &iSize);
286 errorCode = LZ4F_getFrameInfo(dCtx, &fi, ip, &iSize);
293 errorCode = LZ4F_getFrameInfo(dCtx, &fi, ip, &iSize);
306 errorCode = LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, NULL);
316 errorCode = LZ4F_freeDecompressionContext(dCtx);
318 dCtx = NULL;
350 { LZ4F_errorCode_t const createError = LZ4F_createDecompressionContext(&dCtx, LZ4F_VERSION);
359 { size_t const decompressError = LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, NULL);
370 { LZ4F_errorCode_t const freeError = LZ4F_freeDecompressionContext(dCtx);
372 dCtx = NULL;
471 LZ4F_errorCode_t errorCode = LZ4F_createDecompressionContext(&dCtx, LZ4F_VERSION);
484 errorCode = LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, NULL);
504 errorCode = LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, NULL);
521 errorCode = LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, NULL);
534 LZ4F_freeDecompressionContext(dCtx); dCtx = NULL;
569 LZ4F_decompressionContext_t dCtx = NULL;
578 result = LZ4F_createDecompressionContext(&dCtx, LZ4F_VERSION);
687 result = LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, &dOptions);
709 LZ4F_freeDecompressionContext(dCtx);