Home
last modified time | relevance | path

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

/kernel/linux/linux-6.6/lib/zstd/compress/
H A Dzstd_compress_internal.h552 * memcpy() function that won't read beyond more than WILDCOPY_OVERLENGTH bytes past ilimit_w.
553 * Only called when the sequence ends past ilimit_w, so it only needs to be optimized for single
557 ZSTD_safecopyLiterals(BYTE* op, BYTE const* ip, BYTE const* const iend, BYTE const* ilimit_w) in ZSTD_safecopyLiterals() argument
559 assert(iend > ilimit_w); in ZSTD_safecopyLiterals()
560 if (ip <= ilimit_w) { in ZSTD_safecopyLiterals()
561 ZSTD_wildcopy(op, ip, ilimit_w - ip, ZSTD_no_overlap); in ZSTD_safecopyLiterals()
562 op += ilimit_w - ip; in ZSTD_safecopyLiterals()
563 ip = ilimit_w; in ZSTD_safecopyLiterals()

Completed in 3 milliseconds