Lines Matching refs:dCtx
183 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()
289 size_t const fiError = LZ4F_getFrameInfo(dCtx, &fi, ip, &nullSize); in basicTests()
300 size_t const fiError = LZ4F_getFrameInfo(dCtx, &fi, ip, &inputSize); in basicTests()
310 CHECK( LZ4F_getFrameInfo(dCtx, &fi, ip, &iSize) ); in basicTests()
322 size_t const decompressError = LZ4F_decompress(dCtx, decodedBuffer, &dbSize, in basicTests()
331 LZ4F_resetDecompressionContext(dCtx); /* always successful */ in basicTests()
342 CHECK( LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, NULL) ); in basicTests()
384 CHECK( LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, NULL) ); in basicTests()
394 CHECK( LZ4F_freeDecompressionContext(dCtx) ); in basicTests()
395 dCtx = NULL; in basicTests()
506 CHECK( LZ4F_createDecompressionContext(&dCtx, LZ4F_VERSION) ); in basicTests()
508 CHECK( LZ4F_getFrameInfo(dCtx, &prefs.frameInfo, compressedBuffer, &cErr) ); in basicTests()
512 CHECK( LZ4F_freeDecompressionContext(dCtx) ); dCtx = NULL; in basicTests()
669 CHECK( LZ4F_createDecompressionContext(&dCtx, LZ4F_VERSION) ); in basicTests()
681 CHECK( LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, NULL) ); in basicTests()
700 CHECK( LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, NULL) ); in basicTests()
716 CHECK( LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, NULL) ); in basicTests()
728 LZ4F_freeDecompressionContext(dCtx); dCtx = NULL; in basicTests()
766 LZ4F_decompressionContext_t dCtx = NULL; in fuzzerTests() local
776 result = LZ4F_createDecompressionContext(&dCtx, LZ4F_VERSION); in fuzzerTests()
888 result = LZ4F_decompress(dCtx, op, &oSize, ip, &iSize, &dOptions); in fuzzerTests()
911 LZ4F_freeDecompressionContext(dCtx); in fuzzerTests()