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

Function memCmp

3rdparty/bx/src/bx.cpp:257–264  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

255 }
256
257 int32_t memCmp(const void* _lhs, const void* _rhs, size_t _numBytes)
258 {
259#if BX_CRT_NONE
260 return memCmpRef(_lhs, _rhs, _numBytes);
261#else
262 return ::memcmp(_lhs, _rhs, _numBytes);
263#endif // BX_CRT_NONE
264 }
265
266 ///
267 void gather(void* _dst, const void* _src, uint32_t _srcStride, uint32_t _stride, uint32_t _numStrides)

Callers 7

mainFunction · 0.85
imageParseLodePngFunction · 0.85
imageParseJpegFunction · 0.85
getPipelineStateMethod · 0.85
flushMethod · 0.85
getSamplerStateMethod · 0.85
memcmpFunction · 0.85

Calls 2

memCmpRefFunction · 0.85
memcmpFunction · 0.85

Tested by

no test coverage detected