Home | History | Annotate | Download | only in libFLAC

Lines Matching refs:FLAC__int32

49 void FLAC__window_bartlett(FLAC__real *window, const FLAC__int32 L)
51 const FLAC__int32 N = L - 1;
52 FLAC__int32 n;
68 void FLAC__window_bartlett_hann(FLAC__real *window, const FLAC__int32 L)
70 const FLAC__int32 N = L - 1;
71 FLAC__int32 n;
77 void FLAC__window_blackman(FLAC__real *window, const FLAC__int32 L)
79 const FLAC__int32 N = L - 1;
80 FLAC__int32 n;
87 void FLAC__window_blackman_harris_4term_92db_sidelobe(FLAC__real *window, const FLAC__int32 L)
89 const FLAC__int32 N = L - 1;
90 FLAC__int32 n;
96 void FLAC__window_connes(FLAC__real *window, const FLAC__int32 L)
98 const FLAC__int32 N = L - 1;
100 FLAC__int32 n;
109 void FLAC__window_flattop(FLAC__real *window, const FLAC__int32 L)
111 const FLAC__int32 N = L - 1;
112 FLAC__int32 n;
118 void FLAC__window_gauss(FLAC__real *window, const FLAC__int32 L, const FLAC__real stddev)
120 const FLAC__int32 N = L - 1;
122 FLAC__int32 n;
130 void FLAC__window_hamming(FLAC__real *window, const FLAC__int32 L)
132 const FLAC__int32 N = L - 1;
133 FLAC__int32 n;
139 void FLAC__window_hann(FLAC__real *window, const FLAC__int32 L)
141 const FLAC__int32 N = L - 1;
142 FLAC__int32 n;
148 void FLAC__window_kaiser_bessel(FLAC__real *window, const FLAC__int32 L)
150 const FLAC__int32 N = L - 1;
151 FLAC__int32 n;
157 void FLAC__window_nuttall(FLAC__real *window, const FLAC__int32 L)
159 const FLAC__int32 N = L - 1;
160 FLAC__int32 n;
166 void FLAC__window_rectangle(FLAC__real *window, const FLAC__int32 L)
168 FLAC__int32 n;
174 void FLAC__window_triangle(FLAC__real *window, const FLAC__int32 L)
176 FLAC__int32 n;
192 void FLAC__window_tukey(FLAC__real *window, const FLAC__int32 L, const FLAC__real p)
199 const FLAC__int32 Np = (FLAC__int32)(p / 2.0f * L) - 1;
200 FLAC__int32 n;
213 void FLAC__window_welch(FLAC__real *window, const FLAC__int32 L)
215 const FLAC__int32 N = L - 1;
217 FLAC__int32 n;