MCPcopy Create free account
hub / github.com/crownengine/crown / memCopyRef

Function memCopyRef

3rdparty/bx/src/bx.cpp:105–114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

103 }
104
105 void memCopyRef(void* _dst, const void* _src, size_t _numBytes)
106 {
107 uint8_t* dst = (uint8_t*)_dst;
108 const uint8_t* end = dst + _numBytes;
109 const uint8_t* src = (const uint8_t*)_src;
110 while (dst != end)
111 {
112 *dst++ = *src++;
113 }
114 }
115
116 void memCopy(void* _dst, const void* _src, size_t _numBytes)
117 {

Callers 1

memCopyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected