Searched refs:cutoff (Results 1 - 11 of 11) sorted by relevance

/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_wtsynth.h36 /* adjust the filter cutoff frequency to the sample rate */
61 void WT_SetFilterCoeffs (S_WT_INT_FRAME *pIntFrame, EAS_I32 cutoff, EAS_I32 resonance);
H A Deas_wtsynth.c996 EAS_I32 cutoff; local
1005 /* determine the dynamic cutoff frequency */
1006 cutoff = MULT_EG1_EG1(pWTVoice->eg2Value, pArt->eg2ToFc);
1007 cutoff += pArt->filterCutoff;
1010 cutoff -= FILTER_CUTOFF_FREQ_ADJUST + A5_PITCH_OFFSET_IN_CENTS;
1012 /* limit the cutoff frequency */
1013 if (cutoff > FILTER_CUTOFF_MAX_PITCH_CENTS)
1014 cutoff = FILTER_CUTOFF_MAX_PITCH_CENTS;
1015 else if (cutoff < FILTER_CUTOFF_MIN_PITCH_CENTS)
1016 cutoff
1221 WT_SetFilterCoeffs(S_WT_INT_FRAME *pIntFrame, EAS_I32 cutoff, EAS_I32 resonance) argument
[all...]
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_wtsynth.h36 /* adjust the filter cutoff frequency to the sample rate */
61 void WT_SetFilterCoeffs (S_WT_INT_FRAME *pIntFrame, EAS_I32 cutoff, EAS_I32 resonance);
H A Deas_wtsynth.c1002 EAS_I32 cutoff; local
1011 /* determine the dynamic cutoff frequency */
1012 cutoff = MULT_EG1_EG1(pWTVoice->eg2Value, pArt->eg2ToFc);
1013 cutoff += pArt->filterCutoff;
1016 cutoff -= FILTER_CUTOFF_FREQ_ADJUST + A5_PITCH_OFFSET_IN_CENTS;
1018 /* limit the cutoff frequency */
1019 if (cutoff > FILTER_CUTOFF_MAX_PITCH_CENTS)
1020 cutoff = FILTER_CUTOFF_MAX_PITCH_CENTS;
1021 else if (cutoff < FILTER_CUTOFF_MIN_PITCH_CENTS)
1022 cutoff
1227 WT_SetFilterCoeffs(S_WT_INT_FRAME *pIntFrame, EAS_I32 cutoff, EAS_I32 resonance) argument
[all...]
H A Deas_dlssynth.c249 EAS_I32 cutoff; local
259 /* start with base cutoff frequency */
260 cutoff = pDLSArt->filterCutoff;
274 cutoff += FMUL_15x15(temp, pWTVoice->modLFO.lfoValue);
277 cutoff += FMUL_15x15(pWTVoice->eg2Value, pDLSArt->eg2ToFc);
281 cutoff += (pVoice->velocity * pDLSArt->velToFc) >> 7;
285 cutoff += (pVoice->note * pDLSArt->keyNumToFc) >> 7;
288 cutoff -= FILTER_CUTOFF_FREQ_ADJUST + A5_PITCH_OFFSET_IN_CENTS;
290 /* limit the cutoff frequency */
291 if (cutoff > FILTER_CUTOFF_MAX_PITCH_CENT
[all...]
/external/bison/lib/
H A Dstrtol.c256 register unsigned LONG int cutoff; local
359 cutoff = STRTOL_ULONG_MAX / (unsigned LONG int) base;
377 if (i > cutoff || (i == cutoff && c > cutlim))
/external/speex/libspeex/
H A Dresample.c124 float cutoff; member in struct:SpeexResamplerState_
226 { 32, 4, 0.882f, 0.910f, KAISER6 }, /* Q2 */ /* 82.3% cutoff ( ~60 dB stop) 6 */
227 { 48, 8, 0.895f, 0.917f, KAISER8 }, /* Q3 */ /* 84.9% cutoff ( ~80 dB stop) 8 */
228 { 64, 8, 0.921f, 0.940f, KAISER8 }, /* Q4 */ /* 88.7% cutoff ( ~80 dB stop) 8 */
229 { 80, 16, 0.922f, 0.940f, KAISER10}, /* Q5 */ /* 89.1% cutoff (~100 dB stop) 10 */
230 { 96, 16, 0.940f, 0.945f, KAISER10}, /* Q6 */ /* 91.5% cutoff (~100 dB stop) 10 */
231 {128, 16, 0.950f, 0.950f, KAISER10}, /* Q7 */ /* 93.1% cutoff (~100 dB stop) 10 */
232 {160, 16, 0.960f, 0.960f, KAISER10}, /* Q8 */ /* 94.5% cutoff (~100 dB stop) 10 */
233 {192, 32, 0.968f, 0.968f, KAISER12}, /* Q9 */ /* 95.5% cutoff (~100 dB stop) 10 */
234 {256, 32, 0.975f, 0.975f, KAISER12}, /* Q10 */ /* 96.6% cutoff (~10
272 sinc(float cutoff, float x, int N, struct FuncDef *window_func) argument
285 sinc(float cutoff, float x, int N, struct FuncDef *window_func) argument
[all...]
/external/apache-http/src/org/apache/http/impl/conn/
H A DSingleClientConnManager.java329 final long cutoff =
331 if (lastReleaseTime <= cutoff) {
/external/openssl/crypto/x509v3/
H A Dv3_ocsp.c177 static int i2r_ocsp_acutoff(X509V3_EXT_METHOD *method, void *cutoff, BIO *bp, int ind) argument
180 if(!ASN1_GENERALIZEDTIME_print(bp, cutoff)) return 0;
/external/bluetooth/glib/glib/
H A Dgstrfuncs.c706 guint64 cutoff; local
757 cutoff = G_MAXUINT64 / base;
774 if (ui64 > cutoff || (ui64 == cutoff && c > cutlim))
/external/dropbear/libtommath/
H A Dbn.tex1238 actually faster than Comba until you hit distinct ``cutoff'' points. For Karatsuba with the default configuration,
1239 GCC 3.3.1 and an Athlon XP processor the cutoff point is roughly 110 digits (about 70 for the Intel P4). That is, at
1242 Toom-Cook has incredible overhead and is probably only useful for very large inputs. So far no known cutoff points
1243 exist and for the most part I just set the cutoff points very high to make sure they're not called.
1245 A demo program in the ``etc/'' directory of the project called ``tune.c'' can be used to find the cutoff points. This
1270 When the program is running it will output a series of measurements for different cutoff points. It will first find
1272 tuning takes a very long time as the cutoff points are likely to be very high.

Completed in 134 milliseconds