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