Searched refs:ovtype (Results 1 – 2 of 2) sorted by relevance
| /linux/lib/zstd/common/ |
| H A D | zstd_internal.h | 210 void ZSTD_wildcopy(void* dst, const void* src, ptrdiff_t length, ZSTD_overlap_e const ovtype) in ZSTD_wildcopy() argument 217 if (ovtype == ZSTD_overlap_src_before_dst && diff < WILDCOPY_VECLEN) { in ZSTD_wildcopy()
|
| /linux/lib/zstd/decompress/ |
| H A D | zstd_decompress_block.c | 838 …copy(BYTE* op, const BYTE* const oend_w, BYTE const* ip, ptrdiff_t length, ZSTD_overlap_e ovtype) { in ZSTD_safecopy() argument 842 assert((ovtype == ZSTD_no_overlap && (diff <= -8 || diff >= 8 || op >= oend_w)) || in ZSTD_safecopy() 843 (ovtype == ZSTD_overlap_src_before_dst && diff >= 0)); in ZSTD_safecopy() 850 if (ovtype == ZSTD_overlap_src_before_dst) { in ZSTD_safecopy() 861 ZSTD_wildcopy(op, ip, length, ovtype); in ZSTD_safecopy() 867 ZSTD_wildcopy(op, ip, oend_w - op, ovtype); in ZSTD_safecopy()
|