Home | History | Annotate | Download | only in src

Lines Matching full:temp

267 	word	xmax, xmaxc, temp, temp1, temp2;
276 temp = xM[i];
277 temp = GSM_ABS(temp);
278 if (temp > xmax) xmax = temp;
285 temp = SASR( xmax, 9 );
290 itest |= (temp <= 0);
291 temp = SASR( temp, 1 );
298 temp = exp + 5;
300 assert(temp <= 11 && temp >= 0);
301 xmaxc = gsm_add( SASR(xmax, temp), exp << 3 );
333 temp = xM[i] << temp1;
334 temp = GSM_MULT( temp, temp2 );
335 temp = SASR(temp, 12);
336 xMc[i] = temp + 4; /* see note below */
361 word temp, temp1, temp2, temp3;
374 /* temp = gsm_sub( *xMc++ << 1, 7 ); */
375 temp = (*xMc++ << 1) - 7; /* restore sign */
376 assert( temp <= 7 && temp >= -7 ); /* 4 bit signed */
378 temp <<= 12; /* 16 bit signed */
379 temp = GSM_MULT_R( temp1, temp );
380 temp = GSM_ADD( temp, temp3 );
381 *xMp++ = gsm_asr( temp, temp2 );