MCPcopy Create free account
hub / github.com/InteractiveComputerGraphics/SPlisHSPlasH / zmemcpy

Function zmemcpy

extern/zlib/src/zutil.c:145–150  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

143#ifndef HAVE_MEMCPY
144
145void ZLIB_INTERNAL zmemcpy(Bytef* dest, const Bytef* source, uInt len) {
146 if (len == 0) return;
147 do {
148 *dest++ = *source++; /* ??? to be unrolled */
149 } while (--len != 0);
150}
151
152int ZLIB_INTERNAL zmemcmp(const Bytef* s1, const Bytef* s2, uInt len) {
153 uInt j;

Callers 11

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

Calls

no outgoing calls

Tested by

no test coverage detected