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

Function memSet

3rdparty/bx/src/bx.cpp:218–225  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

216 }
217
218 void memSet(void* _dst, uint8_t _ch, size_t _numBytes)
219 {
220#if BX_CRT_NONE
221 memSetRef(_dst, _ch, _numBytes);
222#else
223 ::memset(_dst, _ch, _numBytes);
224#endif // BX_CRT_NONE
225 }
226
227 void memSet(void* _dst, uint32_t _dstStride, uint8_t _ch, uint32_t _stride, uint32_t _num)
228 {

Callers 15

compressBC6HFunction · 0.85
compressBC7Function · 0.85
decodeBlockBc6hFunction · 0.85
decodeBlockBc7Function · 0.85
compileShaderFunction · 0.85
RendererContextGLMethod · 0.85
initMethod · 0.85
createUniformMethod · 0.85
initMethod · 0.85
destroyMethod · 0.85
charsetFillTextureFunction · 0.85
shutdownMethod · 0.85

Calls 2

memSetRefFunction · 0.85
memsetFunction · 0.85

Tested by

no test coverage detected