Lines Matching full:stepsize
101 /* support stepSize of 0 */ in ZSTD_compressBlock_fast_noDict_generic()
102 size_t const stepSize = hasStep ? (cParams->targetLength + !(cParams->targetLength) + 1) : 2; in ZSTD_compressBlock_fast_noDict_generic() local
151 step = stepSize; in ZSTD_compressBlock_fast_noDict_generic()
379 /* support stepSize of 0 */ in ZSTD_compressBlock_fast_dictMatchState_generic()
380 U32 const stepSize = cParams->targetLength + !(cParams->targetLength); in ZSTD_compressBlock_fast_dictMatchState_generic() local
449 assert(stepSize >= 1); in ZSTD_compressBlock_fast_dictMatchState_generic()
450 ip += ((ip-anchor) >> kSearchStrength) + stepSize; in ZSTD_compressBlock_fast_dictMatchState_generic()
466 assert(stepSize >= 1); in ZSTD_compressBlock_fast_dictMatchState_generic()
467 ip += ((ip-anchor) >> kSearchStrength) + stepSize; in ZSTD_compressBlock_fast_dictMatchState_generic()
555 /* support stepSize of 0 */ in ZSTD_compressBlock_fast_extDict_generic()
556 U32 const stepSize = cParams->targetLength + !(cParams->targetLength); in ZSTD_compressBlock_fast_extDict_generic() local
607 assert(stepSize >= 1); in ZSTD_compressBlock_fast_extDict_generic()
608 ip += ((ip-anchor) >> kSearchStrength) + stepSize; in ZSTD_compressBlock_fast_extDict_generic()