Home
last modified time | relevance | path

Searched refs:end_n (Results 1 – 2 of 2) sorted by relevance

/external/flac/libFLAC/
Dwindow.c213 const FLAC__int32 end_n = (FLAC__int32)(end * L); in FLAC__window_partial_tukey() local
214 const FLAC__int32 N = end_n - start_n; in FLAC__window_partial_tukey()
229 for (; n < (end_n-Np) && n < L; n++) in FLAC__window_partial_tukey()
231 for (i = Np; n < end_n && n < L; n++, i--) in FLAC__window_partial_tukey()
241 const FLAC__int32 end_n = (FLAC__int32)(end * L); in FLAC__window_punchout_tukey() local
251 Ne = (FLAC__int32)(p / 2.0f * (L - end_n)); in FLAC__window_punchout_tukey()
259 for (; n < end_n && n < L; n++) in FLAC__window_punchout_tukey()
261 for (i = 1; n < end_n+Ne && n < L; n++, i++) in FLAC__window_punchout_tukey()
/external/scapy/scapy/
Dvolatile.py545 end_n = int(math.log(end)/math.log(2))+1
546 return {sign*2**i for i in range(end_n)}