| 68 | |
| 69 | template <size_t ChunkSize> |
| 70 | sonic_force_inline void Xmemcpy(void* dst_, const void* src_, size_t chunks) { |
| 71 | std::memcpy(dst_, src_, chunks * ChunkSize); |
| 72 | } |
| 73 | |
| 74 | sonic_force_inline bool InlinedMemcmpEq(const void* _a, const void* _b, |
| 75 | size_t s) { |
nothing calls this directly
no outgoing calls
no test coverage detected