Searched defs:Nc (Results 1 - 7 of 7) sorted by relevance

/external/libgsm/src/
H A Dgsm_print.c18 word LARc[8], Nc[4], Mc[4], bc[4], xmaxc[4], xmc[13*4]; local
37 Nc[0] = (*c >> 1) & 0x7F;
60 Nc[1] = (*c >> 1) & 0x7F;
84 Nc[2] = (*c >> 1) & 0x7F;
107 Nc[3] = (*c >> 1) & 0x7F;
135 fprintf(f, "#1: Nc %4.4d bc %d Mc %d xmaxc %d\n",
136 Nc[0], bc[0], Mc[0], xmaxc[0]);
142 fprintf(f, "#2: Nc %4.4d bc %d Mc %d xmaxc %d\n",
143 Nc[1], bc[1], Mc[1], xmaxc[1]);
150 fprintf(f, "#3: Nc
[all...]
H A Dcode.c27 void Gsm_Coder P8((S,s,LARc,Nc,bc,Mc,xmaxc,xMc), argument
51 word * Nc, /* [0..3] LTP lag OUT */
75 Nc++,
H A Dgsm_decode.c16 word LARc[8], Nc[4], Mc[4], bc[4], xmaxc[4], xmc[13*4]; local
40 Nc[0] = sr & 0x7f; sr >>= 7;
64 Nc[1] = sr & 0x7f; sr >>= 7;
88 Nc[2] = sr & 0x7f; sr >>= 7;
112 Nc[3] = sr & 0x7f; sr >>= 7;
153 Nc[0] = sr & 0x7f; sr >>= 7;
177 Nc[1] = sr & 0x7f; sr >>= 7;
201 Nc[2] = sr & 0x7f; sr >>= 7;
225 Nc[3] = sr & 0x7f; sr >>= 7;
268 Nc[
[all...]
H A Dgsm_encode.c15 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);
33 Nc[0] 7
51 Nc[1] 7
69 Nc[2] 7
87 Nc[3] 7
127 sr = sr >> 7 | Nc[0] << 9;
151 sr = sr >> 7 | Nc[1] << 9;
175 sr = sr >> 7 | Nc[2] << 9;
199 sr = sr >> 7 | Nc[
[all...]
H A Dgsm_explode.c16 # define Nc *((gsm_signal (*) [17])(target + 8)) macro
43 Nc[0] = sr & 0x7f; sr >>= 7;
69 Nc[1] = sr & 0x7f; sr >>= 7;
96 Nc[2] = sr & 0x7f; sr >>= 7;
124 Nc[3] = sr & 0x7f; sr >>= 7;
168 Nc[0] = sr & 0x7f; sr >>= 7;
194 Nc[1] = sr & 0x7f; sr >>= 7;
221 Nc[2] = sr & 0x7f; sr >>= 7;
247 Nc[3] = sr & 0x7f; sr >>= 7;
295 Nc[
[all...]
H A Dgsm_implode.c29 Nc[0] 7 8
47 Nc[1] 7 25
65 Nc[2] 7 42
83 Nc[3] 7 59
110 # define Nc *((gsm_signal (*) [17])(source + 8)) macro
132 sr = sr >> 7 | Nc[0] << 9;
159 sr = sr >> 7 | Nc[1] << 9;
186 sr = sr >> 7 | Nc[2] << 9;
213 sr = sr >> 7 | Nc[3] << 9;
259 sr = sr >> 7 | Nc[
[all...]
H A Dlong_term.c23 * This module computes the LTP gain (bc) and the LTP lag (Nc)
60 word Nc, bc; local
94 Nc = 40; /* index for the maximum cross-correlation */
100 Nc = lambda;
104 *Nc_out = Nc;
112 assert( Nc <= 120 && Nc >= 40);
122 L_temp = SASR( dp[k - Nc], 3 );
164 word Nc, bc; local
201 Nc
302 word Nc, bc; local
479 word Nc, bc; local
648 word Nc, bc; local
720 word Nc, bc; local
834 Long_term_analysis_filtering(bc,Nc,dp,d,dpp,e), word bc, word Nc, register word * dp, register word * d, register word * dpp, register word * e argument
867 Gsm_Long_Term_Predictor(S,d,dp,e,dpp,Nc,bc), struct gsm_state * S, word * d, word * dp, word * e, word * dpp, word * Nc, word * bc argument
[all...]

Completed in 78 milliseconds