| 1032 | namespace { |
| 1033 | |
| 1034 | void copy_column( |
| 1035 | const std::vector<Complex>& src, |
| 1036 | int src_col, |
| 1037 | int n_pw, |
| 1038 | Complex* dst |
| 1039 | ) { |
| 1040 | const Complex* col = src.data() + static_cast<std::ptrdiff_t>(src_col) * n_pw; |
| 1041 | for (int i = 0; i < n_pw; ++i) { |
| 1042 | dst[i] = col[i]; |
| 1043 | } |
| 1044 | } |
| 1045 | |
| 1046 | void store_column( |
| 1047 | const Complex* src, |
no outgoing calls
no test coverage detected