Lines Matching refs:oend_w
886 BYTE *const oend_w = oend - WILDCOPY_OVERLENGTH; in ZSTD_execSequenceLast7() local
895 if (oLitEnd <= oend_w) in ZSTD_execSequenceLast7()
899 if (op < oend_w) { in ZSTD_execSequenceLast7()
900 ZSTD_wildcopy(op, *litPtr, oend_w - op); in ZSTD_execSequenceLast7()
901 *litPtr += oend_w - op; in ZSTD_execSequenceLast7()
902 op = oend_w; in ZSTD_execSequenceLast7()
1013 BYTE *const oend_w = oend - WILDCOPY_OVERLENGTH; in ZSTD_execSequence() local
1022 if (oLitEnd > oend_w) in ZSTD_execSequence()
1050 if (op > oend_w || sequence.matchLength < MINMATCH) { in ZSTD_execSequence()
1080 if (op < oend_w) { in ZSTD_execSequence()
1081 ZSTD_wildcopy(op, match, oend_w - op); in ZSTD_execSequence()
1082 match += oend_w - op; in ZSTD_execSequence()
1083 op = oend_w; in ZSTD_execSequence()
1269 BYTE *const oend_w = oend - WILDCOPY_OVERLENGTH; in ZSTD_execSequenceLong() local
1278 if (oLitEnd > oend_w) in ZSTD_execSequenceLong()
1305 if (op > oend_w || sequence.matchLength < MINMATCH) { in ZSTD_execSequenceLong()
1335 if (op < oend_w) { in ZSTD_execSequenceLong()
1336 ZSTD_wildcopy(op, match, oend_w - op); in ZSTD_execSequenceLong()
1337 match += oend_w - op; in ZSTD_execSequenceLong()
1338 op = oend_w; in ZSTD_execSequenceLong()