Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/zstd/lib/common/
H A Dzstd_internal.h279 void ZSTD_wildcopy(void* dst, const void* src, ptrdiff_t length, ZSTD_overlap_e const ovtype) in ZSTD_wildcopy() argument
286 assert(diff >= 8 || (ovtype == ZSTD_no_overlap && diff <= -WILDCOPY_VECLEN)); in ZSTD_wildcopy()
288 if (ovtype == ZSTD_overlap_src_before_dst && diff < WILDCOPY_VECLEN) { in ZSTD_wildcopy()
/f-stack/freebsd/contrib/zstd/lib/decompress/
H A Dzstd_decompress_block.c720 …D_safecopy(BYTE* op, BYTE* const oend_w, BYTE const* ip, ptrdiff_t length, ZSTD_overlap_e ovtype) { in ZSTD_safecopy() argument
724 assert((ovtype == ZSTD_no_overlap && (diff <= -8 || diff >= 8 || op >= oend_w)) || in ZSTD_safecopy()
725 (ovtype == ZSTD_overlap_src_before_dst && diff >= 0)); in ZSTD_safecopy()
732 if (ovtype == ZSTD_overlap_src_before_dst) { in ZSTD_safecopy()
742 ZSTD_wildcopy(op, ip, length, ovtype); in ZSTD_safecopy()
748 ZSTD_wildcopy(op, ip, oend_w - op, ovtype); in ZSTD_safecopy()
/f-stack/freebsd/contrib/openzfs/module/zstd/lib/
H A Dzstd.c6562 void ZSTD_wildcopy(void* dst, const void* src, ptrdiff_t length, ZSTD_overlap_e const ovtype) in ZSTD_wildcopy() argument
6569 assert(diff >= 8 || (ovtype == ZSTD_no_overlap && diff <= -WILDCOPY_VECLEN)); in ZSTD_wildcopy()
6571 if (ovtype == ZSTD_overlap_src_before_dst && diff < WILDCOPY_VECLEN) { in ZSTD_wildcopy()
27009 …D_safecopy(BYTE* op, BYTE* const oend_w, BYTE const* ip, ptrdiff_t length, ZSTD_overlap_e ovtype) { in ZSTD_safecopy() argument
27013 assert((ovtype == ZSTD_no_overlap && (diff <= -8 || diff >= 8 || op >= oend_w)) || in ZSTD_safecopy()
27014 (ovtype == ZSTD_overlap_src_before_dst && diff >= 0)); in ZSTD_safecopy()
27021 if (ovtype == ZSTD_overlap_src_before_dst) { in ZSTD_safecopy()
27031 ZSTD_wildcopy(op, ip, length, ovtype); in ZSTD_safecopy()
27037 ZSTD_wildcopy(op, ip, oend_w - op, ovtype); in ZSTD_safecopy()