Lines Matching refs:ctx

1671 …LZ4_stream_t_internal *const ctx = &LZ4_initStream(state, sizeof(LZ4_stream_t))->internal_donotuse;  in LZ4_compress_fast_extState()  local
1672 assert(ctx != NULL); in LZ4_compress_fast_extState()
1681 …return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, byU16, noDict, noDi… in LZ4_compress_fast_extState()
1686 …return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, tableType, noDict, … in LZ4_compress_fast_extState()
1693 …return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, byU1… in LZ4_compress_fast_extState()
1698 …return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, tabl… in LZ4_compress_fast_extState()
1714 LZ4_stream_t_internal *ctx = &((LZ4_stream_t *)state)->internal_donotuse; in LZ4_compress_fast_extState_fastReset() local
1725 LZ4_prepareTable(ctx, srcSize, tableType); in LZ4_compress_fast_extState_fastReset()
1726 if (ctx->currentOffset) in LZ4_compress_fast_extState_fastReset()
1728 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, 0, notLimited, tableType, noDict, dictSm… in LZ4_compress_fast_extState_fastReset()
1732 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, 0, notLimited, tableType, noDict, noDict… in LZ4_compress_fast_extState_fastReset()
1738 LZ4_prepareTable(ctx, srcSize, tableType); in LZ4_compress_fast_extState_fastReset()
1739 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, 0, notLimited, tableType, noDict, noDict… in LZ4_compress_fast_extState_fastReset()
1747 LZ4_prepareTable(ctx, srcSize, tableType); in LZ4_compress_fast_extState_fastReset()
1748 if (ctx->currentOffset) in LZ4_compress_fast_extState_fastReset()
1750 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, n… in LZ4_compress_fast_extState_fastReset()
1754 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, n… in LZ4_compress_fast_extState_fastReset()
1760 LZ4_prepareTable(ctx, srcSize, tableType); in LZ4_compress_fast_extState_fastReset()
1761 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, n… in LZ4_compress_fast_extState_fastReset()
1774 LZ4_stream_t ctx; in LZ4_compress_fast() local
1775 LZ4_stream_t *const ctxPtr = &ctx; in LZ4_compress_fast()
1820 …LZ4_stream_t *ctx = (LZ4_stream_t *)ALLOC(sizeof(LZ4_stream_t)); /* malloc-calloc always properly … in LZ4_compress_destSize() local
1821 if (ctx == NULL) in LZ4_compress_destSize()
1825 LZ4_stream_t *ctx = &ctxBody; in LZ4_compress_destSize()
1828 int result = LZ4_compress_destSize_extState(ctx, src, dst, srcSizePtr, targetDstSize); in LZ4_compress_destSize()
1831 FREEMEM(ctx); in LZ4_compress_destSize()
1890 void LZ4_resetStream_fast(LZ4_stream_t *ctx) in LZ4_resetStream_fast() argument
1892 LZ4_prepareTable(&(ctx->internal_donotuse), 0, byU32); in LZ4_resetStream_fast()