MCPcopy Create free account
hub / github.com/LUX-Core/lux / blkcpy

Function blkcpy

src/crypto/scrypt.cpp:195–205  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

193}
194
195static void
196blkcpy(void * dest, const void * src, size_t len)
197{
198 size_t * D = (size_t*)dest;
199 const size_t * S = (size_t*)src;
200 size_t L = len / sizeof(size_t);
201 size_t i;
202
203 for (i = 0; i < L; i++)
204 D[i] = S[i];
205}
206
207static void
208blkxor(void * dest, const void * src, size_t len)

Callers 3

salsa20_8Function · 0.70
blockmix_salsa8Function · 0.70
SMixFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected