| 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 | { |
no test coverage detected