MCPcopy Create free account
hub / github.com/RsyncProject/rsync / zmemcpy

Function zmemcpy

zlib/zutil.c:150–156  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

148#ifndef HAVE_MEMCPY
149
150void ZLIB_INTERNAL zmemcpy(Bytef* dest, const Bytef* source, uInt len)
151{
152 if (len == 0) return;
153 do {
154 *dest++ = *source++; /* ??? to be unrolled */
155 } while (--len != 0);
156}
157
158int ZLIB_INTERNAL zmemcmp(const Bytef* s1, const Bytef* s2, uInt len)
159{

Callers 6

updatewindowFunction · 0.85
inflate.cFile · 0.85
flush_pendingFunction · 0.85
deflateCopyFunction · 0.85
read_bufFunction · 0.85
fill_windowFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected