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

/linux-master/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) argument
559 assert(iend > ilimit_w);
560 if (ip <= ilimit_w) {
561 ZSTD_wildcopy(op, ip, ilimit_w - ip, ZSTD_no_overlap);
562 op += ilimit_w - ip;
563 ip = ilimit_w;

Completed in 251 milliseconds