Lines Matching refs:N
51 const FLAC__int32 N = L - 1; in FLAC__window_bartlett() local
55 for (n = 0; n <= N/2; n++) in FLAC__window_bartlett()
56 window[n] = 2.0f * n / (float)N; in FLAC__window_bartlett()
57 for (; n <= N; n++) in FLAC__window_bartlett()
58 window[n] = 2.0f - 2.0f * n / (float)N; in FLAC__window_bartlett()
62 window[n] = 2.0f * n / (float)N; in FLAC__window_bartlett()
63 for (; n <= N; n++) in FLAC__window_bartlett()
64 window[n] = 2.0f - 2.0f * (N-n) / (float)N; in FLAC__window_bartlett()
70 const FLAC__int32 N = L - 1; in FLAC__window_bartlett_hann() local
74 …FLAC__real)(0.62f - 0.48f * fabs((float)n/(float)N+0.5f) + 0.38f * cos(2.0f * M_PI * ((float)n/(fl… in FLAC__window_bartlett_hann()
79 const FLAC__int32 N = L - 1; in FLAC__window_blackman() local
83 …ndow[n] = (FLAC__real)(0.42f - 0.5f * cos(2.0f * M_PI * n / N) + 0.08f * cos(4.0f * M_PI * n / N)); in FLAC__window_blackman()
89 const FLAC__int32 N = L - 1; in FLAC__window_blackman_harris_4term_92db_sidelobe() local
92 for (n = 0; n <= N; n++) in FLAC__window_blackman_harris_4term_92db_sidelobe()
93 …5f - 0.48829f * cos(2.0f * M_PI * n / N) + 0.14128f * cos(4.0f * M_PI * n / N) - 0.01168f * cos(6.… in FLAC__window_blackman_harris_4term_92db_sidelobe()
98 const FLAC__int32 N = L - 1; in FLAC__window_connes() local
99 const double N2 = (double)N / 2.; in FLAC__window_connes()
102 for (n = 0; n <= N; n++) { in FLAC__window_connes()
111 const FLAC__int32 N = L - 1; in FLAC__window_flattop() local
115 …cos(2.0f * M_PI * n / N) + 1.29f * cos(4.0f * M_PI * n / N) - 0.388f * cos(6.0f * M_PI * n / N) + … in FLAC__window_flattop()
120 const FLAC__int32 N = L - 1; in FLAC__window_gauss() local
121 const double N2 = (double)N / 2.; in FLAC__window_gauss()
124 for (n = 0; n <= N; n++) { in FLAC__window_gauss()
132 const FLAC__int32 N = L - 1; in FLAC__window_hamming() local
136 window[n] = (FLAC__real)(0.54f - 0.46f * cos(2.0f * M_PI * n / N)); in FLAC__window_hamming()
141 const FLAC__int32 N = L - 1; in FLAC__window_hann() local
145 window[n] = (FLAC__real)(0.5f - 0.5f * cos(2.0f * M_PI * n / N)); in FLAC__window_hann()
150 const FLAC__int32 N = L - 1; in FLAC__window_kaiser_bessel() local
154 …0.402f - 0.498f * cos(2.0f * M_PI * n / N) + 0.098f * cos(4.0f * M_PI * n / N) - 0.001f * cos(6.0f… in FLAC__window_kaiser_bessel()
159 const FLAC__int32 N = L - 1; in FLAC__window_nuttall() local
163 …al)(0.3635819f - 0.4891775f*cos(2.0f*M_PI*n/N) + 0.1365995f*cos(4.0f*M_PI*n/N) - 0.0106411f*cos(6.… in FLAC__window_nuttall()
215 const FLAC__int32 N = L - 1; in FLAC__window_welch() local
216 const double N2 = (double)N / 2.; in FLAC__window_welch()
219 for (n = 0; n <= N; n++) { in FLAC__window_welch()