Lines Matching refs:nextPtr
97 U32* const nextPtr = bt + 2*(matchIndex & btMask);
101 * but it's still possible to have nextPtr[1] == ZSTD_DUBT_UNSORTED_MARK
134 matchIndex, btLow, nextPtr[1]);
135 smallerPtr = nextPtr+1; /* new "candidate" => larger than match, which was smaller than target */
136 matchIndex = nextPtr[1]; /* new matchIndex, larger than previous and closer to current */
143 matchIndex, btLow, nextPtr[0]);
144 largerPtr = nextPtr;
145 matchIndex = nextPtr[0];
189 U32* const nextPtr = dictBt + 2*(dictMatchIndex & btMask);
211 dictMatchIndex = nextPtr[1]; /* new matchIndex larger than previous (closer to current) */
216 dictMatchIndex = nextPtr[0];
313 U32* const nextPtr = bt + 2*(matchIndex & btMask);
347 smallerPtr = nextPtr+1; /* new "smaller" => larger of match */
348 matchIndex = nextPtr[1]; /* new matchIndex larger than previous (closer to current) */
354 largerPtr = nextPtr;
355 matchIndex = nextPtr[0];