Home | History | Annotate | Download | only in legacy

Lines Matching refs:oLitEnd

3310     BYTE* const oLitEnd = op + sequence.litLength;
3315 const BYTE* match = oLitEnd - sequence.offset;
3323 if (oLitEnd > oend_8) return ERROR(dstSize_tooSmall);
3329 ZSTDv06_wildcopy(op, *litPtr, (ptrdiff_t)sequence.litLength); /* note : oLitEnd <= oend-8 : no risk of overwrite beyond oend */
3330 op = oLitEnd;
3334 if (sequence.offset > (size_t)(oLitEnd - base)) {
3336 if (sequence.offset > (size_t)(oLitEnd - vBase)) return ERROR(corruption_detected);
3339 memmove(oLitEnd, match, sequence.matchLength);
3344 memmove(oLitEnd, match, length1);
3345 op = oLitEnd + length1;