| 1950 | } |
| 1951 | |
| 1952 | NOINLINE static void destroy_fftblue_plan (fftblue_plan plan) |
| 1953 | { |
| 1954 | DEALLOC(plan->mem); |
| 1955 | destroy_cfftp_plan(plan->plan); |
| 1956 | DEALLOC(plan); |
| 1957 | } |
| 1958 | |
| 1959 | NOINLINE WARN_UNUSED_RESULT |
| 1960 | static int fftblue_fft(fftblue_plan plan, double c[], int isign, double fct) |
no test coverage detected