MCPcopy Create free account
hub / github.com/F-Stack/f-stack / zmemcpy

Function zmemcpy

freebsd/contrib/zlib/zutil.c:149–158  ·  view source on GitHub ↗
(dest, source, len)

Source from the content-addressed store, hash-verified

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

Callers 11

inflateBackFunction · 0.85
_tr_stored_blockFunction · 0.85
updatewindowFunction · 0.85
inflate.cFile · 0.85
deflateGetDictionaryFunction · 0.85
flush_pendingFunction · 0.85
deflateFunction · 0.85
deflateCopyFunction · 0.85
read_bufFunction · 0.85
fill_windowFunction · 0.85
deflate_storedFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected