Lines Matching refs:xmaxc
12 int16_t LARc [8], Nc [4], Mc [4], bc [4], xmaxc [4], xmc [13 * 4] ; in gsm_encode() local
14 Gsm_Coder (s, source, LARc, Nc, bc, Mc, xmaxc, xmc) ; in gsm_encode()
127 sr = sr >> 6 | xmaxc [0] << 10 ; in gsm_encode()
151 sr = sr >> 6 | xmaxc [1] << 10 ; in gsm_encode()
175 sr = sr >> 6 | xmaxc [2] << 10 ; in gsm_encode()
199 sr = sr >> 6 | xmaxc [3] << 10 ; in gsm_encode()
245 sr = sr >> 6 | xmaxc [0] << 10 ; in gsm_encode()
269 sr = sr >> 6 | xmaxc [1] << 10 ; in gsm_encode()
293 sr = sr >> 6 | xmaxc [2] << 10 ; in gsm_encode()
317 sr = sr >> 6 | xmaxc [3] << 10 ; in gsm_encode()
361 | ((xmaxc [0] >> 1) & 0x1F) ; in gsm_encode()
362 *c++ = ((xmaxc [0] & 0x1) << 7) in gsm_encode()
383 | ((xmaxc [1] >> 1) & 0x1F) ; in gsm_encode()
384 *c++ = ((xmaxc [1] & 0x1) << 7) in gsm_encode()
405 | ((xmaxc [2] >> 1) & 0x1F) ; in gsm_encode()
406 *c++ = ((xmaxc [2] & 0x1) << 7) in gsm_encode()
427 | ((xmaxc [3] >> 1) & 0x1F) ; in gsm_encode()
428 *c++ = ((xmaxc [3] & 0x1) << 7) in gsm_encode()