Lines Matching refs:xmaxc
13 int16_t LARc [8], Nc [4], Mc [4], bc [4], xmaxc [4], xmc [13 * 4] ; in gsm_decode() local
39 xmaxc [0] = sr & 0x3f ; sr >>= 6 ; in gsm_decode()
63 xmaxc [1] = sr & 0x3f ; sr >>= 6 ; in gsm_decode()
87 xmaxc [2] = sr & 0x3f ; sr >>= 6 ; in gsm_decode()
111 xmaxc [3] = sr & 0x3f ; sr >>= 6 ; in gsm_decode()
153 xmaxc [0] = sr & 0x3f ; sr >>= 6 ; in gsm_decode()
177 xmaxc [1] = sr & 0x3f ; sr >>= 6 ; in gsm_decode()
201 xmaxc [2] = sr & 0x3f ; sr >>= 6 ; in gsm_decode()
225 xmaxc [3] = sr & 0x3f ; sr >>= 6 ; in gsm_decode()
267 xmaxc [0] = (*c++ & 0x1F) << 1 ; in gsm_decode()
268 xmaxc [0] |= (*c >> 7) & 0x1 ; in gsm_decode()
289 xmaxc [1] = (*c++ & 0x1F) << 1 ; in gsm_decode()
290 xmaxc [1] |= (*c >> 7) & 0x1 ; in gsm_decode()
311 xmaxc [2] = (*c++ & 0x1F) << 1 ; in gsm_decode()
312 xmaxc [2] |= (*c >> 7) & 0x1 ; in gsm_decode()
333 xmaxc [3] = (*c++ & 0x1F) << 1 ; in gsm_decode()
334 xmaxc [3] |= (*c >> 7) & 0x1 ; in gsm_decode()
353 Gsm_Decoder (s, LARc, Nc, bc, Mc, xmaxc, xmc, target) ; in gsm_decode()