Lines Matching defs:value

65     inline double value() const {
81 double mCurrent; // current value of sine/cosine
82 double mPrevious; // previous value of sine/cosine
92 * The SineGen returned by value() starts at innerStart = outerStart + n*outerStep;
105 inline SineGen value() {
106 return SineGen(mSineInnerCur.value(), mSineInnerPrev.value(), mTwoCos);
137 * @param x is the value to round.
175 * pass in the absolute value as needed).
190 static const double value = I0Term<N-1>::value / (4. * N * N);
195 static const double value = 1.;
200 static const double value = I0ATerm<N-1>::value * (2.*N-1.) * (2.*N-1.) / (8. * N);
205 static const double value = 0.398942280401432677939946059934381868475858631164934657665925;
294 return Poly7(I0Term<0>::value, I0Term<1>::value,
295 I0Term<2>::value, I0Term<3>::value,
296 I0Term<4>::value, I0Term<5>::value,
297 I0Term<6>::value, x); // e < 1.6e-7
360 Poly9(I0ATerm<0>::value, I0ATerm<1>::value,
361 I0ATerm<2>::value, I0ATerm<3>::value,
362 I0ATerm<4>::value, I0ATerm<5>::value,
363 I0ATerm<6>::value, I0ATerm<7>::value,
364 I0ATerm<8>::value, y); // (... e) < 1.9e-7
374 return Poly7(I0Term<0>::value, I0Term<1>::value,
375 I0Term<2>::value, I0Term<3>::value,
376 I0Term<4>::value, I0Term<5>::value,
377 I0Term<6>::value, x2) * num / den; // e < 1.6e-7
559 * is the designed polyphase bank value / L). Likewise for fs.
576 * @param passMin is the minimum value in the passband
578 * @param passMax is the maximum value in the passband (useful for scaling). This should
585 * @param stopMax is the maximum value in the stopband.
629 * @param stopBandAtten is the stopband value, should be >50dB.
696 if (is_same<T, int16_t>::value) { // int16_t needs noise shaping
698 } else if (is_same<T, int32_t>::value) {