Home
last modified time | relevance | path

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

/dports/audio/audacity/audacity-Audacity-3.1.3/libraries/lib-math/
H A DFFT.cpp56 static ArraysOf<int> gFFTBitTable; variable
101 gFFTBitTable.reinit(MaxFastBits); in InitFFT()
105 auto &array = gFFTBitTable[b - 1]; in InitFFT()
116 gFFTBitTable.reset(); in DeinitFFT()
122 return gFFTBitTable[NumBits - 1][i]; in FastReverseBits()
144 if (!gFFTBitTable) in FFT()
/dports/audio/denemo/denemo-2.0.6/src/audio/
H A Daudiocapture.c560 static int **gFFTBitTable = NULL; variable
608 gFFTBitTable = malloc (sizeof (int *) * MaxFastBits); in InitFFT()
615 gFFTBitTable[b - 1] = malloc (sizeof (int) * len); in InitFFT()
618 gFFTBitTable[b - 1][i] = ReverseBits (i, b); in InitFFT()
628 return gFFTBitTable[NumBits - 1][i]; in FastReverseBits()
653 if (!gFFTBitTable) in FFT()