Lines Matching defs:temp
255 int16_t xmax, xmaxc, temp, temp1, temp2 ;
264 { temp = xM [i] ;
265 temp = GSM_ABS (temp) ;
266 if (temp > xmax) xmax = temp ;
273 temp = SASR_W (xmax, 9) ;
277 { itest |= (temp <= 0) ;
278 temp = SASR_W (temp, 1) ;
285 temp = expon + 5 ;
287 assert (temp <= 11 && temp >= 0) ;
288 xmaxc = gsm_add (SASR_W (xmax, temp), (int16_t) (expon << 3)) ;
319 temp = arith_shift_left (xM [i], temp1) ;
320 temp = GSM_MULT (temp, temp2) ;
321 temp = SASR_W (temp, 12) ;
322 xMc [i] = temp + 4 ; /* see note below */
347 int16_t temp, temp1, temp2, temp3 ;
358 /* temp = gsm_sub (*xMc++ << 1, 7) ; */
359 temp = (*xMc++ << 1) - 7 ; /* restore sign */
360 assert (temp <= 7 && temp >= -7) ; /* 4 bit signed */
362 temp = arith_shift_left (temp, 12) ; /* 16 bit signed */
363 temp = GSM_MULT_R (temp1, temp) ;
364 temp = GSM_ADD (temp, temp3) ;
365 *xMp++ = gsm_asr (temp, temp2) ;