Lines Matching refs:dCtx
207 LZ4F_decompressionContext_t dCtx; in basicTests() local
234 LZ4F_errorCode_t errorCode = LZ4F_createDecompressionContext(&dCtx, LZ4F_VERSION); in basicTests()
238 …errorCode = LZ4F_decompress(dCtx, decodedBuffer, &decodedBufferSize, compressedBuffer, &compressed… in basicTests()
249 errorCode = LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, NULL); in basicTests()
258 errorCode = LZ4F_freeDecompressionContext(dCtx); in basicTests()
292 LZ4F_errorCode_t errorCode = LZ4F_createDecompressionContext(&dCtx, LZ4F_VERSION); in basicTests()
303 errorCode = LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, NULL); in basicTests()
312 errorCode = LZ4F_freeDecompressionContext(dCtx); in basicTests()
387 LZ4F_decompressionContext_t dCtx = NULL; in fuzzerTests() local
395 result = LZ4F_createDecompressionContext(&dCtx, LZ4F_VERSION); in fuzzerTests()
501 result = LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, &dOptions); in fuzzerTests()
522 LZ4F_freeDecompressionContext(dCtx); in fuzzerTests()