Home
last modified time | relevance | path

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

/linux-4.19.296/lib/zstd/
Dzstd_internal.h135 ZSTD_STATIC void ZSTD_wildcopy(void *dst, const void *src, ptrdiff_t length) in ZSTD_wildcopy() function
Ddecompress.c900 ZSTD_wildcopy(op, *litPtr, oend_w - op); in ZSTD_execSequenceLast7()
1028 ZSTD_wildcopy(op + 8, (*litPtr) + 8, in ZSTD_execSequence()
1081 ZSTD_wildcopy(op, match, oend_w - op); in ZSTD_execSequence()
1088 ZSTD_wildcopy(op, match, (ptrdiff_t)sequence.matchLength - 8); /* works even if matchLength < 8 */ in ZSTD_execSequence()
1284 ZSTD_wildcopy(op + 8, (*litPtr) + 8, in ZSTD_execSequenceLong()
1336 ZSTD_wildcopy(op, match, oend_w - op); in ZSTD_execSequenceLong()
1343 ZSTD_wildcopy(op, match, (ptrdiff_t)sequence.matchLength - 8); /* works even if matchLength < 8 */ in ZSTD_execSequenceLong()
Dcompress.c864 ZSTD_wildcopy(seqStorePtr->lit, literals, litLength); in ZSTD_storeSeq()