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

Function memMove

3rdparty/bx/src/bx.cpp:174–181  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

172 }
173
174 void memMove(void* _dst, const void* _src, size_t _numBytes)
175 {
176#if BX_CRT_NONE
177 memMoveRef(_dst, _src, _numBytes);
178#else
179 ::memmove(_dst, _src, _numBytes);
180#endif // BX_CRT_NONE
181 }
182
183 void memMove(
184 void* _dst

Callers 9

loadMethod · 0.85
strInsertFunction · 0.85
compileShaderFunction · 0.85
strinsFunction · 0.85
PrettifyFunction · 0.85
memmoveFunction · 0.85
gatherFunction · 0.85
scatterFunction · 0.85
writeFunction · 0.85

Calls 2

memMoveRefFunction · 0.85
memmoveFunction · 0.85

Tested by

no test coverage detected