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

Function memCopy

3rdparty/bx/src/bx.cpp:116–123  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

114 }
115
116 void memCopy(void* _dst, const void* _src, size_t _numBytes)
117 {
118#if BX_CRT_NONE
119 memCopyRef(_dst, _src, _numBytes);
120#else
121 ::memcpy(_dst, _src, _numBytes);
122#endif // BX_CRT_NONE
123 }
124
125 void memCopy(
126 void* _dst

Callers 15

convertFunction · 0.85
imageEncodeFromRgba8Function · 0.85
calcFilterAreaFunction · 0.85
imageGenerateMipsFunction · 0.85
imageParseLodePngFunction · 0.85
imageParseTinyExrFunction · 0.85
imageParseLibHeifFunction · 0.85
imageCopyFunction · 0.85
imageConvertFunction · 0.85
imageParseTFunction · 0.85

Calls 2

memCopyRefFunction · 0.85
memcpyFunction · 0.85

Tested by

no test coverage detected