| 416 | } |
| 417 | |
| 418 | void UpcastInts(const int32_t* source, int64_t* dest, int64_t length) { |
| 419 | CastIntsInternal(source, dest, length); |
| 420 | } |
| 421 | |
| 422 | template <typename InputInt, typename OutputInt> |
| 423 | void TransposeInts(const InputInt* src, OutputInt* dest, int64_t length, |
no test coverage detected