MCPcopy Create free account
hub / github.com/MariaDB/server / zmemcpy

Function zmemcpy

zlib/zutil.c:153–160  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

151#ifndef HAVE_MEMCPY
152
153void ZLIB_INTERNAL zmemcpy(void FAR *dst, const void FAR *src, z_size_t n) {
154 uchf *p = dst;
155 const uchf *q = src;
156 while (n) {
157 *p++ = *q++;
158 n--;
159 }
160}
161
162int ZLIB_INTERNAL zmemcmp(const void FAR *s1, const void FAR *s2, z_size_t n) {
163 const uchf *p = s1, *q = s2;

Callers 12

zmemcpyMethod · 0.85
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