Home | History | Annotate | Download | only in libaudioprocessing

Lines Matching refs:mHalfNumCoefs

172     mHalfNumCoefs = halfNumCoefs;
229 double tbw = firKaiserTbw(c.mHalfNumCoefs, stopBandAtten);
231 (void)posix_memalign(reinterpret_cast<void**>(&buf), 32, (c.mL+1)*c.mHalfNumCoefs*sizeof(TC));
238 firKaiserGen(buf, c.mL, c.mHalfNumCoefs, stopBandAtten, fcr, atten);
247 c.mL, c.mHalfNumCoefs, stopBandAtten, fcr, atten, tbw);
253 testFir(buf, c.mL, c.mHalfNumCoefs, fp, fs, /*passSteps*/ 1000, /*stopSteps*/ 100000,
399 mInBuffer.resize(mChannelCount, c.mHalfNumCoefs);
418 // or half the filter length (mHalfNumCoefs) must be a multiple of 8.
421 int stride = ((c.mHalfNumCoefs & 7) == 0) ? 16 : 2;
484 stride, useS32 ? "S32" : "S16", 2*c.mHalfNumCoefs, c.mShift);
549 impulse, c.mHalfNumCoefs,
560 impulse, c.mHalfNumCoefs,
570 const int halfNumCoefs = c.mHalfNumCoefs;