| 229 | } |
| 230 | |
| 231 | void CopyShorts(const void *src, const int n, void *dst) |
| 232 | { |
| 233 | const auto *s = reinterpret_cast<const unsigned short *>(src); |
| 234 | auto *d = reinterpret_cast<unsigned short *>(dst); |
| 235 | for(int i = 0; i < n; i++) { |
| 236 | CopyShort(s, d); |
| 237 | ++d; ++s; |
| 238 | } |
| 239 | } |
| 240 | |
| 241 | void CopyInt(const void *src, void *dst) |
| 242 | { |
no test coverage detected