Lines Matching defs:complex
107 QDM2Complex *complex;
125 DECLARE_ALIGNED(32, QDM2Complex, complex)[MPA_MAX_CHANNELS][256];
136 int fft_size; ///< size of FFT, in complex numbers
1444 tone->complex[0].im += c.im;
1445 tone->complex[0].re += c.re;
1446 tone->complex[1].im -= c.im;
1447 tone->complex[1].re -= c.re;
1456 tone->complex[fft_cutoff_index_table[tone->cutoff][i]].re +=
1458 tone->complex[fft_cutoff_index_table[tone->cutoff][i]].im +=
1462 tone->complex[i].re += c.re * f[i + 2];
1463 tone->complex[i].im += c.im * f[i + 2];
1480 memset(q->fft.complex[ch], 0, q->fft_size * sizeof(QDM2Complex));
1498 q->fft.complex[ch][q->fft_coefs[i].offset + 0].re += c.re;
1499 q->fft.complex[ch][q->fft_coefs[i].offset + 0].im += c.im;
1500 q->fft.complex[ch][q->fft_coefs[i].offset + 1].re -= c.re;
1501 q->fft.complex[ch][q->fft_coefs[i].offset + 1].im -= c.im;
1531 tone.complex = &q->fft.complex[ch][offset];
1550 q->fft.complex[channel][0].re *= 2.0f;
1551 q->fft.complex[channel][0].im = 0.0f;
1552 q->rdft_ctx.rdft_calc(&q->rdft_ctx, (FFTSample *)q->fft.complex[channel]);
1555 out[0] += q->fft.complex[channel][i].re * gain;
1556 out[q->channels] += q->fft.complex[channel][i].im * gain;