Lines Matching full:stepsize
199 size_t const stepSize = cParams->targetLength + !(cParams->targetLength) + 1; /* min 2 */ in ZSTD_compressBlock_fast_noDict_generic() local
248 step = stepSize; in ZSTD_compressBlock_fast_noDict_generic()
489 /* support stepSize of 0 */ in ZSTD_compressBlock_fast_dictMatchState_generic()
490 U32 const stepSize = cParams->targetLength + !(cParams->targetLength); in ZSTD_compressBlock_fast_dictMatchState_generic() local
494 const BYTE* ip1 = ip0 + stepSize; /* we assert below that stepSize >= 1 */ in ZSTD_compressBlock_fast_dictMatchState_generic()
540 assert(stepSize >= 1); in ZSTD_compressBlock_fast_dictMatchState_generic()
551 size_t step = stepSize; in ZSTD_compressBlock_fast_dictMatchState_generic()
667 ip1 = ip0 + stepSize; in ZSTD_compressBlock_fast_dictMatchState_generic()
715 /* support stepSize of 0 */ in ZSTD_compressBlock_fast_extDict_generic()
716 size_t const stepSize = cParams->targetLength + !(cParams->targetLength) + 1; in ZSTD_compressBlock_fast_extDict_generic() local
772 step = stepSize; in ZSTD_compressBlock_fast_extDict_generic()