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