• Home
  • Raw
  • Download

Lines Matching refs:ctx

407 void ZSTD_compressBlock_opt_generic(ZSTD_CCtx *ctx, const void *src, size_t srcSize, const int ultr…  in ZSTD_compressBlock_opt_generic()  argument
409 seqStore_t *seqStorePtr = &(ctx->seqStore); in ZSTD_compressBlock_opt_generic()
415 const BYTE *const base = ctx->base; in ZSTD_compressBlock_opt_generic()
416 const BYTE *const prefixStart = base + ctx->dictLimit; in ZSTD_compressBlock_opt_generic()
418 const U32 maxSearches = 1U << ctx->params.cParams.searchLog; in ZSTD_compressBlock_opt_generic()
419 const U32 sufficient_len = ctx->params.cParams.targetLength; in ZSTD_compressBlock_opt_generic()
420 const U32 mls = ctx->params.cParams.searchLength; in ZSTD_compressBlock_opt_generic()
421 const U32 minMatch = (ctx->params.cParams.searchLength == 3) ? 3 : 4; in ZSTD_compressBlock_opt_generic()
429 ctx->nextToUpdate3 = ctx->nextToUpdate; in ZSTD_compressBlock_opt_generic()
435 rep[i] = ctx->rep[i]; in ZSTD_compressBlock_opt_generic()
472 match_num = ZSTD_BtGetAllMatches_selectMLS(ctx, ip, iend, maxSearches, mls, matches, minMatch); in ZSTD_compressBlock_opt_generic()
591 match_num = ZSTD_BtGetAllMatches_selectMLS(ctx, inr, iend, maxSearches, mls, matches, best_mlen); in ZSTD_compressBlock_opt_generic()
688 ctx->repToConfirm[i] = rep[i]; in ZSTD_compressBlock_opt_generic()
700 void ZSTD_compressBlock_opt_extDict_generic(ZSTD_CCtx *ctx, const void *src, size_t srcSize, const … in ZSTD_compressBlock_opt_extDict_generic() argument
702 seqStore_t *seqStorePtr = &(ctx->seqStore); in ZSTD_compressBlock_opt_extDict_generic()
708 const BYTE *const base = ctx->base; in ZSTD_compressBlock_opt_extDict_generic()
709 const U32 lowestIndex = ctx->lowLimit; in ZSTD_compressBlock_opt_extDict_generic()
710 const U32 dictLimit = ctx->dictLimit; in ZSTD_compressBlock_opt_extDict_generic()
712 const BYTE *const dictBase = ctx->dictBase; in ZSTD_compressBlock_opt_extDict_generic()
715 const U32 maxSearches = 1U << ctx->params.cParams.searchLog; in ZSTD_compressBlock_opt_extDict_generic()
716 const U32 sufficient_len = ctx->params.cParams.targetLength; in ZSTD_compressBlock_opt_extDict_generic()
717 const U32 mls = ctx->params.cParams.searchLength; in ZSTD_compressBlock_opt_extDict_generic()
718 const U32 minMatch = (ctx->params.cParams.searchLength == 3) ? 3 : 4; in ZSTD_compressBlock_opt_extDict_generic()
729 rep[i] = ctx->rep[i]; in ZSTD_compressBlock_opt_extDict_generic()
732 ctx->nextToUpdate3 = ctx->nextToUpdate; in ZSTD_compressBlock_opt_extDict_generic()
780 …match_num = ZSTD_BtGetAllMatches_selectMLS_extDict(ctx, ip, iend, maxSearches, mls, matches, minMa… in ZSTD_compressBlock_opt_extDict_generic()
905 …match_num = ZSTD_BtGetAllMatches_selectMLS_extDict(ctx, inr, iend, maxSearches, mls, matches, minM… in ZSTD_compressBlock_opt_extDict_generic()
1003 ctx->repToConfirm[i] = rep[i]; in ZSTD_compressBlock_opt_extDict_generic()