Home
last modified time | relevance | path

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

/linux-6.6.21/lib/zstd/decompress/ !
Dzstd_decompress_block.c792 static void ZSTD_safecopy(BYTE* op, const BYTE* const oend_w, BYTE const* ip, ptrdiff_t length, ZST… in ZSTD_safecopy() argument
796 assert((ovtype == ZSTD_no_overlap && (diff <= -8 || diff >= 8 || op >= oend_w)) || in ZSTD_safecopy()
813 if (oend <= oend_w) { in ZSTD_safecopy()
818 if (op <= oend_w) { in ZSTD_safecopy()
820 assert(oend > oend_w); in ZSTD_safecopy()
821 ZSTD_wildcopy(op, ip, oend_w - op, ovtype); in ZSTD_safecopy()
822 ip += oend_w - op; in ZSTD_safecopy()
823 op += oend_w - op; in ZSTD_safecopy()
870 BYTE* const oend_w = oend - WILDCOPY_OVERLENGTH; in ZSTD_execSequenceEnd() local
879 ZSTD_safecopy(op, oend_w, *litPtr, sequence.litLength, ZSTD_no_overlap); in ZSTD_execSequenceEnd()
[all …]