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

  /external/libopus/silk/float/
pitch_analysis_core_FLP.c 97 silk_float Cmax, CCmax, CCmax_b, CCmax_new_b, CCmax_new;
222 Cmax = C[ 0 ][ min_lag_4kHz ];
223 if( Cmax < 0.2f ) {
231 threshold = search_thres1 * Cmax;
  /external/libopus/silk/fixed/
pitch_analysis_core_FIX.c 105 opus_int d_srch[ PE_D_SRCH_LENGTH ], Cmax, length_d_srch, length_d_comp;
251 Cmax = (opus_int)C[ 0 ]; /* Q14 */
252 if( Cmax < SILK_FIX_CONST( 0.2, 14 ) ) {
261 threshold = silk_SMULWB( search_thres1_Q16, Cmax );
    [all...]
  /external/skia/src/core/
SkXfermode.cpp 209 static inline void setSaturationComponents(float* Cmin, float* Cmid, float* Cmax, float s) {
210 if(*Cmax > *Cmin) {
211 *Cmid = (*Cmid - *Cmin) * s / (*Cmax - *Cmin);
212 *Cmax = s;
214 *Cmax = 0;
721 static inline void setSaturationComponents(int* Cmin, int* Cmid, int* Cmax, int s) {
722 if(*Cmax > *Cmin) {
723 *Cmid = SkMulDiv(*Cmid - *Cmin, s, *Cmax - *Cmin);
724 *Cmax = s;
726 *Cmax = 0
    [all...]

Completed in 114 milliseconds