| 248 | } |
| 249 | |
| 250 | void CopyInts(const void *src, const int n, void *dst) |
| 251 | { |
| 252 | const auto *s = reinterpret_cast<const unsigned int *>(src); |
| 253 | auto *d = reinterpret_cast<unsigned int *>(dst); |
| 254 | for(int i = 0; i < n; i++) { |
| 255 | CopyInt(s, d); |
| 256 | ++d; ++s; |
| 257 | } |
| 258 | } |
| 259 | |
| 260 | void CopyInt64(const void *src, void *dst) |
| 261 | { |
no test coverage detected