Lines Matching defs:updateStartIdx
903 * Updates the hash table with positions starting from updateStartIdx until updateEndIdx.
906 U32 updateStartIdx, U32 const updateEndIdx,
915 DEBUGLOG(6, "ZSTD_row_update_internalImpl(): updateStartIdx=%u, updateEndIdx=%u", updateStartIdx, updateEndIdx);
916 for (; updateStartIdx < updateEndIdx; ++updateStartIdx) {
917 U32 const hash = useCache ? ZSTD_row_nextCachedHash(ms->hashCache, hashTable, tagTable, base, updateStartIdx, hashLog, rowLog, mls)
918 : (U32)ZSTD_hashPtr(base + updateStartIdx, hashLog + ZSTD_ROW_HASH_TAG_BITS, mls);
925 assert(hash == ZSTD_hashPtr(base + updateStartIdx, hashLog + ZSTD_ROW_HASH_TAG_BITS, mls));
927 row[pos] = updateStartIdx;