Lines Matching refs:target
33 U32 const target = (U32)(ip - base);
36 if (idx != target)
38 idx, target, ms->window.dictLimit);
43 for ( ; idx < target ; idx++) {
55 ms->nextToUpdate = target;
135 smallerPtr = nextPtr+1; /* new "candidate" => larger than match, which was smaller than target */
401 U32 const target = (U32)(ip - base);
406 U32 const minChain = chainSize < target - idx ? target - chainSize : idx;
421 U32 const tmpMinChain = tmpChainSize < target ? target - tmpChainSize : idx;
430 for ( ; idx < target; idx++) {
499 for (idx = ms->nextToUpdate; idx < target; idx++) {
509 ms->nextToUpdate = target;
627 const U32 target = (U32)(ip - base);
630 while(idx < target) { /* catch up */
637 ms->nextToUpdate = target;
941 const U32 target = (U32)(ip - base);
952 if (UNLIKELY(target - idx > kSkipThreshold)) {
955 idx = target - kMaxMatchEndPositionsToUpdate;
959 assert(target >= idx);
960 ZSTD_row_update_internalImpl(ms, idx, target, mls, rowLog, rowMask, useCache);
961 ms->nextToUpdate = target;