HomeSort by relevance Sort by last modified time
    Searched refs:Coef (Results 1 - 6 of 6) sorted by null

  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
filter_functions.c 23 double* Coef,
32 //if (fabs(Coef[0]-1.0)<0.001) {
33 if ( (Coef[0] > 0.9999) && (Coef[0] < 1.0001) )
37 sum = Coef[1] * InOut[-1];
39 sum += Coef[k] * InOut[-k];
46 scal = 1.0 / Coef[0];
51 *InOut -= scal*Coef[k]*InOut[-k];
60 double* Coef,
72 tmp = In[0] * Coef[0]
    [all...]
codec.h 198 void WebRtcIsac_AllPoleFilter(double* InOut, double* Coef, size_t lengthInOut,
201 void WebRtcIsac_AllZeroFilter(double* In, double* Coef, size_t lengthInOut,
  /external/pdfium/third_party/lcms2-2.6/src/
cmswtpnt.c 281 cmsVEC3 WhitePoint, Coef;
311 _cmsMAT3eval(&Coef, &Result, &WhitePoint);
314 _cmsVEC3init(&r -> v[0], Coef.n[VX]*xr, Coef.n[VY]*xg, Coef.n[VZ]*xb);
315 _cmsVEC3init(&r -> v[1], Coef.n[VX]*yr, Coef.n[VY]*yg, Coef.n[VZ]*yb);
316 _cmsVEC3init(&r -> v[2], Coef.n[VX]*(1.0-xr-yr), Coef.n[VY]*(1.0-xg-yg), Coef.n[VZ]*(1.0-xb-yb))
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
LVPSA_Memory.c 59 INST_ALLOC Coef;
66 InstAlloc_Init( &Coef , LVM_NULL);
145 InstAlloc_AddMember( &Coef, pInitParams->nBands * sizeof(Biquad_Instance_t) );
146 InstAlloc_AddMember( &Coef, pInitParams->nBands * sizeof(QPD_State_t) );
147 pMemoryTable->Region[LVPSA_MEMREGION_PERSISTENT_COEF].Size = InstAlloc_GetTotal(&Coef);
LVPSA_Init.c 57 INST_ALLOC Coef;
91 InstAlloc_Init( &Coef , pMemoryTable->Region[LVPSA_MEMREGION_PERSISTENT_COEF].pBaseAddress);
151 pLVPSA_Inst->pBP_Instances = InstAlloc_AddMember( &Coef, pInitParams->nBands * sizeof(Biquad_Instance_t) );
152 pLVPSA_Inst->pQPD_States = InstAlloc_AddMember( &Coef, pInitParams->nBands * sizeof(QPD_State_t) );
  /external/opencv3/modules/core/src/
lpsolver.cpp 317 double Coef=b(leaving_index,entering_index);
320 b(leaving_index,i)=1/Coef;
322 b(leaving_index,i)/=Coef;
328 double coef=b(i,entering_index); local
331 b(i,j)=-coef*b(leaving_index,j);
333 b(i,j)-=(coef*b(leaving_index,j));
340 Coef=c(0,entering_index);
343 c(0,i)=-Coef*b(leaving_index,i);
345 c(0,i)-=Coef*b(leaving_index,i);
349 v+=Coef*b(leaving_index,b.cols-1)
    [all...]

Completed in 128 milliseconds