NOLINTNEXTLINE(readability-non-const-parameter)
| 94 | |
| 95 | // NOLINTNEXTLINE(readability-non-const-parameter) |
| 96 | af_err af_stdev_all(double* realVal, double* imagVal, const af_array in) { |
| 97 | return af_stdev_all_v2(realVal, imagVal, in, AF_VARIANCE_POPULATION); |
| 98 | } |
| 99 | |
| 100 | af_err af_stdev_all_v2(double* realVal, double* imagVal, const af_array in, |
| 101 | const af_var_bias bias) { |
nothing calls this directly
no test coverage detected