Home
last modified time | relevance | path

Searched refs:WILDCOPY_VECLEN (Results 1 - 2 of 2) sorted by relevance

/kernel/linux/linux-6.6/lib/zstd/common/
H A Dzstd_internal.h192 #define WILDCOPY_VECLEN 16 macro
203 * - ZSTD_no_overlap: The source and destination are guaranteed to be at least WILDCOPY_VECLEN bytes apart.
215 if (ovtype == ZSTD_overlap_src_before_dst && diff < WILDCOPY_VECLEN) { in ZSTD_wildcopy()
221 assert(diff >= WILDCOPY_VECLEN || diff <= -WILDCOPY_VECLEN); in ZSTD_wildcopy()
/kernel/linux/linux-6.6/lib/zstd/decompress/
H A Dzstd_decompress_block.c788 * - ZSTD_no_overlap: The source and destination are guaranteed to be at least WILDCOPY_VECLEN bytes apart.
842 if (op <= oend - WILDCOPY_OVERLENGTH && diff < -WILDCOPY_VECLEN) { in ZSTD_safecopyDstBeforeSrc()
1021 /* Nearly all offsets are >= WILDCOPY_VECLEN bytes, which means we can use wildcopy in ZSTD_execSequence()
1024 if (LIKELY(sequence.offset >= WILDCOPY_VECLEN)) { in ZSTD_execSequence()
1032 assert(sequence.offset < WILDCOPY_VECLEN); in ZSTD_execSequence()
1112 /* Nearly all offsets are >= WILDCOPY_VECLEN bytes, which means we can use wildcopy in ZSTD_execSequenceSplitLitBuffer()
1115 if (LIKELY(sequence.offset >= WILDCOPY_VECLEN)) { in ZSTD_execSequenceSplitLitBuffer()
1123 assert(sequence.offset < WILDCOPY_VECLEN); in ZSTD_execSequenceSplitLitBuffer()

Completed in 5 milliseconds