Home
last modified time | relevance | path

Searched refs:oend_w (Results 1 – 2 of 2) sorted by relevance

/freebsd-12-stable/sys/contrib/zstd/lib/decompress/
Dzstd_decompress.c1036 BYTE* const oend_w = oend - WILDCOPY_OVERLENGTH; in ZSTD_execSequenceLast7() local
1043 if (oLitEnd <= oend_w) return ERROR(GENERIC); /* Precondition */ in ZSTD_execSequenceLast7()
1046 if (op < oend_w) { in ZSTD_execSequenceLast7()
1047 ZSTD_wildcopy(op, *litPtr, oend_w - op); in ZSTD_execSequenceLast7()
1048 *litPtr += oend_w - op; in ZSTD_execSequenceLast7()
1049 op = oend_w; in ZSTD_execSequenceLast7()
1083 BYTE* const oend_w = oend - WILDCOPY_OVERLENGTH; in ZSTD_execSequence() local
1090 …if (oLitEnd>oend_w) return ZSTD_execSequenceLast7(op, oend, sequence, litPtr, litLimit, base, vBas… in ZSTD_execSequence()
1115 if (op > oend_w || sequence.matchLength < MINMATCH) { in ZSTD_execSequence()
1142 if (op < oend_w) { in ZSTD_execSequence()
[all …]
/freebsd-12-stable/sys/contrib/zstd/lib/legacy/
Dzstd_v07.c3593 BYTE* const oend_w = oend-WILDCOPY_OVERLENGTH; in ZSTDv07_execSequence() local
3598 …if ((oLitEnd>oend_w) | (oMatchEnd>oend)) return ERROR(dstSize_tooSmall); /* last match must start … in ZSTDv07_execSequence()
3621 if (op > oend_w || sequence.matchLength < MINMATCH) { in ZSTDv07_execSequence()
3647 if (op < oend_w) { in ZSTDv07_execSequence()
3648 ZSTDv07_wildcopy(op, match, oend_w - op); in ZSTDv07_execSequence()
3649 match += oend_w - op; in ZSTDv07_execSequence()
3650 op = oend_w; in ZSTDv07_execSequence()