Lines Matching defs:shift
47 int i, shift;
56 shift=0;
60 shift++;
64 out[i] = SHL16(in[i], shift);
66 return shift;
69 static void renorm_range(spx_word16_t *in, spx_word16_t *out, int shift, int len)
74 out[i] = PSHR16(in[i], shift);
326 int shift;
328 shift = maximize_range(in, in, 32000, t->N);
330 renorm_range(in, in, shift, t->N);
331 renorm_range(out, out, shift, t->N);