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

  /external/libgsm/src/
gsm_print.c 18 word LARc[8], Nc[4], Mc[4], bc[4], xmaxc[4], xmc[13*4]; local
41 xmaxc[0] = (*c++ & 0x1F) << 1;
42 xmaxc[0] |= (*c >> 7) & 0x1;
64 xmaxc[1] = (*c++ & 0x1F) << 1;
65 xmaxc[1] |= (*c >> 7) & 0x1;
88 xmaxc[2] = (*c++ & 0x1F) << 1;
89 xmaxc[2] |= (*c >> 7) & 0x1;
111 xmaxc[3] = (*c++ & 0x1F) << 1;
112 xmaxc[3] |= (*c >> 7) & 0x1;
135 fprintf(f, "#1: Nc %4.4d bc %d Mc %d xmaxc %d\n"
    [all...]
gsm_decode.c 16 word LARc[8], Nc[4], Mc[4], bc[4], xmaxc[4], xmc[13*4]; local
44 xmaxc[0] = sr & 0x3f; sr >>= 6;
68 xmaxc[1] = sr & 0x3f; sr >>= 6;
92 xmaxc[2] = sr & 0x3f; sr >>= 6;
116 xmaxc[3] = sr & 0x3f; sr >>= 6;
158 xmaxc[0] = sr & 0x3f; sr >>= 6;
182 xmaxc[1] = sr & 0x3f; sr >>= 6;
206 xmaxc[2] = sr & 0x3f; sr >>= 6;
230 xmaxc[3] = sr & 0x3f; sr >>= 6;
272 xmaxc[0] = (*c++ & 0x1F) << 1
    [all...]
gsm_encode.c 15 word LARc[8], Nc[4], Mc[4], bc[4], xmaxc[4], xmc[13*4]; local
17 Gsm_Coder(s, source, LARc, Nc, bc, Mc, xmaxc, xmc);
36 xmaxc[0] 6
54 xmaxc[1] 6
72 xmaxc[2] 6
90 xmaxc[3] 6
131 sr = sr >> 6 | xmaxc[0] << 10;
155 sr = sr >> 6 | xmaxc[1] << 10;
179 sr = sr >> 6 | xmaxc[2] << 10;
203 sr = sr >> 6 | xmaxc[3] << 10
    [all...]
gsm_explode.c 19 # define xmaxc *((gsm_signal (*) [17])(target + 11)) macro
47 xmaxc[0] = sr & 0x3f; sr >>= 6;
73 xmaxc[1] = sr & 0x3f; sr >>= 6;
100 xmaxc[2] = sr & 0x3f; sr >>= 6;
128 xmaxc[3] = sr & 0x3f; sr >>= 6;
173 xmaxc[0] = sr & 0x3f; sr >>= 6;
199 xmaxc[1] = sr & 0x3f; sr >>= 6;
226 xmaxc[2] = sr & 0x3f; sr >>= 6;
252 xmaxc[3] = sr & 0x3f; sr >>= 6;
302 xmaxc[0] = (*c++ & 0x1F) << 1
    [all...]
gsm_implode.c 32 xmaxc[0] 6 11
50 xmaxc[1] 6 28
68 xmaxc[2] 6 45
86 xmaxc[3] 6 62
113 # define xmaxc *((gsm_signal (*) [17])(source + 11)) macro
136 sr = sr >> 6 | xmaxc[0] << 10;
163 sr = sr >> 6 | xmaxc[1] << 10;
190 sr = sr >> 6 | xmaxc[2] << 10;
217 sr = sr >> 6 | xmaxc[3] << 10;
263 sr = sr >> 6 | xmaxc[0] << 10
    [all...]
rpe.c 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; local
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 )
    [all...]

Completed in 153 milliseconds