Lines Matching refs:ZSTD_memcpy
55 #include "../common/zstd_deps.h" /* ZSTD_memcpy, ZSTD_memmove, ZSTD_memset */
330 ZSTD_memcpy(dstDCtx, srcDCtx, toCopy); /* no need to copy workspace */
575 ZSTD_memcpy(dst, (const BYTE *)src + ZSTD_SKIPPABLEHEADERSIZE, skippableContentSize);
1128 ZSTD_memcpy(dctx->headerBuffer, src, srcSize);
1135 ZSTD_memcpy(dctx->headerBuffer, src, srcSize);
1142 ZSTD_memcpy(dctx->headerBuffer + (dctx->headerSize - srcSize), src, srcSize);
1253 ZSTD_memcpy(dctx->headerBuffer + (ZSTD_SKIPPABLEHEADERSIZE - srcSize), src, srcSize); /* complete skippable header */
1411 ZSTD_memcpy(dctx->entropy.rep, repStartValue, sizeof(repStartValue)); /* initial repcodes */
1931 ZSTD_memcpy(zds->headerBuffer + zds->lhSize, ip, remainingInput);
1938 ZSTD_memcpy(zds->headerBuffer + zds->lhSize, ip, toLoad); zds->lhSize = hSize; ip += toLoad;