Searched refs:Coef (Results 1 – 5 of 5) sorted by relevance
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/ |
D | cmswtpnt.c | 281 cmsVEC3 WhitePoint, Coef; in _cmsBuildRGB2XYZtransferMatrix() local 311 _cmsMAT3eval(&Coef, &Result, &WhitePoint); in _cmsBuildRGB2XYZtransferMatrix() 314 _cmsVEC3init(&r -> v[0], Coef.n[VX]*xr, Coef.n[VY]*xg, Coef.n[VZ]*xb); in _cmsBuildRGB2XYZtransferMatrix() 315 _cmsVEC3init(&r -> v[1], Coef.n[VX]*yr, Coef.n[VY]*yg, Coef.n[VZ]*yb); in _cmsBuildRGB2XYZtransferMatrix() 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)); in _cmsBuildRGB2XYZtransferMatrix()
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/ |
D | filter_functions.c | 22 void WebRtcIsac_AllPoleFilter(double *InOut, double *Coef, int lengthInOut, int orderCoef){ in WebRtcIsac_AllPoleFilter() argument 30 if ( (Coef[0] > 0.9999) && (Coef[0] < 1.0001) ) in WebRtcIsac_AllPoleFilter() 34 sum = Coef[1] * InOut[-1]; in WebRtcIsac_AllPoleFilter() 36 sum += Coef[k] * InOut[-k]; in WebRtcIsac_AllPoleFilter() 43 scal = 1.0 / Coef[0]; in WebRtcIsac_AllPoleFilter() 48 *InOut -= scal*Coef[k]*InOut[-k]; in WebRtcIsac_AllPoleFilter() 56 void WebRtcIsac_AllZeroFilter(double *In, double *Coef, int lengthInOut, int orderCoef, double *Out… in WebRtcIsac_AllZeroFilter() argument 65 tmp = In[0] * Coef[0]; in WebRtcIsac_AllZeroFilter() 68 tmp += Coef[k] * In[-k]; in WebRtcIsac_AllZeroFilter()
|
D | codec.h | 182 void WebRtcIsac_AllPoleFilter(double* InOut, double* Coef, int lengthInOut, 185 void WebRtcIsac_AllZeroFilter(double* In, double* Coef, int lengthInOut,
|
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/ |
D | filter_functions.c | 21 void WebRtcIsac_AllPoleFilter(double *InOut, double *Coef, int lengthInOut, int orderCoef){ in WebRtcIsac_AllPoleFilter() argument 29 if ( (Coef[0] > 0.9999) && (Coef[0] < 1.0001) ) in WebRtcIsac_AllPoleFilter() 33 sum = Coef[1] * InOut[-1]; in WebRtcIsac_AllPoleFilter() 35 sum += Coef[k] * InOut[-k]; in WebRtcIsac_AllPoleFilter() 42 scal = 1.0 / Coef[0]; in WebRtcIsac_AllPoleFilter() 47 *InOut -= scal*Coef[k]*InOut[-k]; in WebRtcIsac_AllPoleFilter() 55 void WebRtcIsac_AllZeroFilter(double *In, double *Coef, int lengthInOut, int orderCoef, double *Out… in WebRtcIsac_AllZeroFilter() argument 64 tmp = In[0] * Coef[0]; in WebRtcIsac_AllZeroFilter() 67 tmp += Coef[k] * In[-k]; in WebRtcIsac_AllZeroFilter()
|
D | codec.h | 182 void WebRtcIsac_AllPoleFilter(double* InOut, double* Coef, int lengthInOut, 185 void WebRtcIsac_AllZeroFilter(double* In, double* Coef, int lengthInOut,
|