Searched defs:Cmax (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/opus/src/silk/float/
H A Dpitch_analysis_core_FLP.c94 silk_float Cmax, CCmax, CCmax_b, CCmax_new_b, CCmax_new; local
216 Cmax = C[ 0 ][ min_lag_4kHz ];
222 threshold = Cmax * Cmax;
231 threshold = search_thres1 * Cmax;
/external/chromium_org/third_party/opus/src/silk/fixed/
H A Dpitch_analysis_core_FIX.c94 opus_int d_srch[ PE_D_SRCH_LENGTH ], Cmax, length_d_srch, length_d_comp; local
244 Cmax = (opus_int)C[ 0 ][ min_lag_4kHz ]; /* Q-1 */
245 threshold = silk_SMULBB( Cmax, Cmax ); /* Q-2 */
256 threshold = silk_SMULWB( search_thres1_Q16, Cmax );
/external/chromium_org/third_party/skia/src/core/
H A DSkXfermode.cpp440 static inline void setSaturationComponents(int* Cmin, int* Cmid, int* Cmax, int s) { argument
441 if(*Cmax > *Cmin) {
442 *Cmid = SkMulDiv(*Cmid - *Cmin, s, *Cmax - *Cmin);
443 *Cmax = s;
445 *Cmax = 0;
/external/skia/src/core/
H A DSkXfermode.cpp440 static inline void setSaturationComponents(int* Cmin, int* Cmid, int* Cmax, int s) { argument
441 if(*Cmax > *Cmin) {
442 *Cmid = SkMulDiv(*Cmid - *Cmin, s, *Cmax - *Cmin);
443 *Cmax = s;
445 *Cmax = 0;

Completed in 142 milliseconds