Home | History | Annotate | Download | only in src

Lines Matching refs:xmaxc

223 static void APCM_quantization_xmaxc_to_exp_mant P3((xmaxc,exp_out,mant_out),
224 word xmaxc, /* IN */
230 /* Compute exponent and mantissa of the decoded version of xmaxc
234 if (xmaxc > 15) exp = SASR(xmaxc, 3) - 1;
235 mant = xmaxc - (exp << 3);
267 word xmax, xmaxc, temp, temp1, temp2;
281 /* Qantizing and coding of xmax to get xmaxc.
301 xmaxc = gsm_add( SASR(xmax, temp), exp << 3 );
307 APCM_quantization_xmaxc_to_exp_mant( xmaxc, &exp, &mant );
309 /* This computation uses the fact that the decoded version of xmaxc
311 * xmaxc (logarithmic table).
344 *xmaxc_out = xmaxc;
357 * the mantissa of xmaxc (FAC[0..7]).
449 void Gsm_RPE_Encoding P5((S,e,xmaxc,Mc,xMc),
454 word * xmaxc, /* OUT */
465 APCM_quantization( xM, xMc, &mant, &exp, xmaxc);