Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/module/zstd/lib/common/
H A Dzstd_internal.h264 void ZSTD_wildcopy(void* dst, const void* src, ptrdiff_t length, ZSTD_overlap_e const ovtype) in ZSTD_wildcopy() argument
271 assert(diff >= 8 || (ovtype == ZSTD_no_overlap && diff <= -WILDCOPY_VECLEN)); in ZSTD_wildcopy()
273 if (ovtype == ZSTD_overlap_src_before_dst && diff < WILDCOPY_VECLEN) { in ZSTD_wildcopy()
/freebsd/sys/contrib/zstd/lib/common/
H A Dzstd_internal.h218 void ZSTD_wildcopy(void* dst, const void* src, ptrdiff_t length, ZSTD_overlap_e const ovtype) in ZSTD_wildcopy() argument
225 if (ovtype == ZSTD_overlap_src_before_dst && diff < WILDCOPY_VECLEN) { in ZSTD_wildcopy()
/freebsd/sys/contrib/openzfs/module/zstd/lib/decompress/
H A Dzstd_decompress_block.c612 …D_safecopy(BYTE* op, BYTE* const oend_w, BYTE const* ip, ptrdiff_t length, ZSTD_overlap_e ovtype) { in ZSTD_safecopy() argument
616 assert((ovtype == ZSTD_no_overlap && (diff <= -8 || diff >= 8 || op >= oend_w)) || in ZSTD_safecopy()
617 (ovtype == ZSTD_overlap_src_before_dst && diff >= 0)); in ZSTD_safecopy()
624 if (ovtype == ZSTD_overlap_src_before_dst) { in ZSTD_safecopy()
634 ZSTD_wildcopy(op, ip, length, ovtype); in ZSTD_safecopy()
640 ZSTD_wildcopy(op, ip, oend_w - op, ovtype); in ZSTD_safecopy()
/freebsd/sys/contrib/zstd/lib/decompress/
H A Dzstd_decompress_block.c792 …copy(BYTE* op, const BYTE* const oend_w, BYTE const* ip, ptrdiff_t length, ZSTD_overlap_e ovtype) { in ZSTD_safecopy() argument
796 assert((ovtype == ZSTD_no_overlap && (diff <= -8 || diff >= 8 || op >= oend_w)) || in ZSTD_safecopy()
797 (ovtype == ZSTD_overlap_src_before_dst && diff >= 0)); in ZSTD_safecopy()
804 if (ovtype == ZSTD_overlap_src_before_dst) { in ZSTD_safecopy()
815 ZSTD_wildcopy(op, ip, length, ovtype); in ZSTD_safecopy()
821 ZSTD_wildcopy(op, ip, oend_w - op, ovtype); in ZSTD_safecopy()