Lines Matching refs:ctx
1369 …LZ4_stream_t_internal* const ctx = & LZ4_initStream(state, sizeof(LZ4_stream_t)) -> internal_donot… in LZ4_compress_fast_extState() local
1370 assert(ctx != NULL); in LZ4_compress_fast_extState()
1375 …return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, byU16, noDict, noDi… in LZ4_compress_fast_extState()
1378 …return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, tableType, noDict, … in LZ4_compress_fast_extState()
1382 …return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, byU1… in LZ4_compress_fast_extState()
1385 …return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, tabl… in LZ4_compress_fast_extState()
1401 LZ4_stream_t_internal* const ctx = &((LZ4_stream_t*)state)->internal_donotuse; in LZ4_compress_fast_extState_fastReset() local
1404 assert(ctx != NULL); in LZ4_compress_fast_extState_fastReset()
1409 LZ4_prepareTable(ctx, srcSize, tableType); in LZ4_compress_fast_extState_fastReset()
1410 if (ctx->currentOffset) { in LZ4_compress_fast_extState_fastReset()
1411 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, 0, notLimited, tableType, noDict, dictSm… in LZ4_compress_fast_extState_fastReset()
1413 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, 0, notLimited, tableType, noDict, noDict… in LZ4_compress_fast_extState_fastReset()
1417 LZ4_prepareTable(ctx, srcSize, tableType); in LZ4_compress_fast_extState_fastReset()
1418 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, 0, notLimited, tableType, noDict, noDict… in LZ4_compress_fast_extState_fastReset()
1423 LZ4_prepareTable(ctx, srcSize, tableType); in LZ4_compress_fast_extState_fastReset()
1424 if (ctx->currentOffset) { in LZ4_compress_fast_extState_fastReset()
1425 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, n… in LZ4_compress_fast_extState_fastReset()
1427 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, n… in LZ4_compress_fast_extState_fastReset()
1431 LZ4_prepareTable(ctx, srcSize, tableType); in LZ4_compress_fast_extState_fastReset()
1432 …return LZ4_compress_generic(ctx, src, dst, srcSize, NULL, dstCapacity, limitedOutput, tableType, n… in LZ4_compress_fast_extState_fastReset()
1445 LZ4_stream_t ctx; in LZ4_compress_fast() local
1446 LZ4_stream_t* const ctxPtr = &ctx; in LZ4_compress_fast()
1486 …LZ4_stream_t* const ctx = (LZ4_stream_t*)ALLOC(sizeof(LZ4_stream_t)); /* malloc-calloc always pr… in LZ4_compress_destSize() local
1487 if (ctx == NULL) return 0; in LZ4_compress_destSize()
1490 LZ4_stream_t* const ctx = &ctxBody; in LZ4_compress_destSize()
1493 int result = LZ4_compress_destSize_extState(ctx, src, dst, srcSizePtr, targetDstSize); in LZ4_compress_destSize()
1496 FREEMEM(ctx); in LZ4_compress_destSize()
1547 void LZ4_resetStream_fast(LZ4_stream_t* ctx) { in LZ4_resetStream_fast() argument
1548 LZ4_prepareTable(&(ctx->internal_donotuse), 0, byU32); in LZ4_resetStream_fast()