Searched refs:toCopy (Results 1 – 3 of 3) sorted by relevance
181 size_t const toCopy = (size_t)((char*)(&dstDCtx->inBuff) - (char*)dstDCtx); in ZSTD_copyDCtx() local182 memcpy(dstDCtx, srcDCtx, toCopy); /* no need to copy workspace */ in ZSTD_copyDCtx()
343 size_t const toCopy = (size_t)((char*)(&dstDCtx->inBuff) - (char*)dstDCtx); in ZSTD_copyDCtx() local344 ZSTD_memcpy(dstDCtx, srcDCtx, toCopy); /* no need to copy workspace */ in ZSTD_copyDCtx()
5639 size_t const toCopy = XXH_MIN((secretSize - pos), customSeedSize); in XXH3_generateSecret() local5640 memcpy((char*)secretBuffer + pos, customSeed, toCopy); in XXH3_generateSecret()5641 pos += toCopy; in XXH3_generateSecret()