Home
last modified time | relevance | path

Searched refs:n3 (Results 1 – 4 of 4) sorted by relevance

/liblc3-3.5.0-3.4.0/src/
Dmdct_neon.h117 int n3 = twiddles->n3; in neon_fft_bf3() local
119 const struct lc3_complex (*w1_ptr)[2] = w0_ptr + n3; in neon_fft_bf3()
120 const struct lc3_complex (*w2_ptr)[2] = w1_ptr + n3; in neon_fft_bf3()
123 const struct lc3_complex *x1_ptr = x0_ptr + n*n3; in neon_fft_bf3()
124 const struct lc3_complex *x2_ptr = x1_ptr + n*n3; in neon_fft_bf3()
127 struct lc3_complex *y1_ptr = y0_ptr + n3; in neon_fft_bf3()
128 struct lc3_complex *y2_ptr = y1_ptr + n3; in neon_fft_bf3()
131 y0_ptr += 3*n3, y1_ptr += 3*n3, y2_ptr += 3*n3) { in neon_fft_bf3()
135 for (j = 0; j < (n3 >> 1); j++, in neon_fft_bf3()
176 if (n3 & 1) { in neon_fft_bf3()
Dmdct.c98 int n3 = twiddles->n3; in fft_bf3() local
100 const struct lc3_complex (*w1)[2] = w0 + n3, (*w2)[2] = w1 + n3; in fft_bf3()
102 const struct lc3_complex *x0 = x, *x1 = x0 + n*n3, *x2 = x1 + n*n3; in fft_bf3()
103 struct lc3_complex *y0 = y, *y1 = y0 + n3, *y2 = y1 + n3; in fft_bf3()
105 for (int i = 0; i < n; i++, y0 += 3*n3, y1 += 3*n3, y2 += 3*n3) in fft_bf3()
106 for (int j = 0; j < n3; j++, x0++, x1++, x2++) { in fft_bf3()
Dtables.c31 .n3 = 15/3, .t = (const struct lc3_complex [][2]){
51 .n3 = 45/3, .t = (const struct lc3_complex [][2]){
Dtables.h30 struct lc3_fft_bf3_twiddles { int n3; const struct lc3_complex (*t)[2]; }; member