| 2108 | } |
| 2109 | |
| 2110 | static void destroy_cfft_plan (cfft_plan plan) |
| 2111 | { |
| 2112 | if (plan->blueplan) |
| 2113 | destroy_fftblue_plan(plan->blueplan); |
| 2114 | if (plan->packplan) |
| 2115 | destroy_cfftp_plan(plan->packplan); |
| 2116 | DEALLOC(plan); |
| 2117 | } |
| 2118 | |
| 2119 | WARN_UNUSED_RESULT static int cfft_backward(cfft_plan plan, double c[], double fct) |
| 2120 | { |
no test coverage detected