Searched defs:dtmp (Results 1 - 5 of 5) sorted by relevance

/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
H A Dintialize.c130 double t, dtmp, dtmp2, denum, denum2; local
146 dtmp = PITCH_WLPCASYM * t * denum + (1-PITCH_WLPCASYM) * t * t * denum2;
147 dtmp *= 3.14159265;
148 dtmp2 = sin(dtmp);
/external/openssl/crypto/pem/
H A Dpem_all.c260 DSA *dtmp; local
262 dtmp = EVP_PKEY_get1_DSA(key);
264 if(!dtmp) return NULL;
267 *dsa = dtmp;
269 return dtmp;
355 EC_KEY *dtmp; local
357 dtmp = EVP_PKEY_get1_EC_KEY(key);
359 if(!dtmp) return NULL;
363 *eckey = dtmp;
365 return dtmp;
[all...]
/external/bison/lib/
H A Dlbitset.c1047 lbitset_elt *dtmp; local
1096 dtmp = delt;
1098 lbitset_elt_free (dtmp);
1102 dtmp = delt;
1106 dtmp = lbitset_elt_calloc ();
1112 dstp = dtmp->words;
1171 if (!lbitset_elt_zero_p (dtmp))
1173 dtmp->index = windex;
1175 lbitset_elt_link (dst, dtmp);
1179 lbitset_elt_free (dtmp);
[all...]
/external/webrtc/src/modules/audio_processing/aec/
H A Decho_cancellation.c705 float dtmp; local
728 dtmp = upweight * aecpc->aec->erl.himean + (1 - upweight) * aecpc->aec->erl.average;
729 metrics->erl.average = (short) dtmp;
749 dtmp = upweight * aecpc->aec->erle.himean + (1 - upweight) * aecpc->aec->erle.average;
750 metrics->erle.average = (short) dtmp;
783 dtmp = upweight * aecpc->aec->aNlp.himean + (1 - upweight) * aecpc->aec->aNlp.average;
784 metrics->aNlp.average = (short) dtmp;
H A Daec_core.c857 float scale, dtmp; local
892 dtmp = (float)0.0;
1166 dtmp = (float)aec->dBufH[i];
1167 dtmp = (float)dtmp * nlpGainHband; // for variable gain
1172 dtmp += cnScaleHband * fft[i];
1176 outputH[i] = (short)WEBRTC_SPL_SAT(WEBRTC_SPL_WORD16_MAX, dtmp,
1377 float dtmp, dtmp2; local
1411 dtmp = 10 * (float)log10(aec->farlevel.averagelevel /
1415 aec->erl.instant = dtmp;
[all...]

Completed in 749 milliseconds