Searched defs:cutoff (Results 1 - 7 of 7) sorted by relevance

/external/openssl/crypto/x509v3/
H A Dv3_ocsp.c185 static int i2r_ocsp_acutoff(const X509V3_EXT_METHOD *method, void *cutoff, argument
189 if(!ASN1_GENERALIZEDTIME_print(bp, cutoff)) return 0;
/external/sonivox/arm-wt-22k/lib_src/
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...]
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...]
/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/sonivox/arm-hybrid-22k/lib_src/
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/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/bluetooth/glib/glib/
H A Dgstrfuncs.c706 guint64 cutoff; local
757 cutoff = G_MAXUINT64 / base;
774 if (ui64 > cutoff || (ui64 == cutoff && c > cutlim))

Completed in 916 milliseconds