Lines Matching defs:shift
176 int i, k, mag, shift, round;
182 shift = mag > 0x400000 ? 2 : 0;
183 round = shift > 0 ? 1 << (shift - 1) : 0;
186 buf_a[i] = (input[i] + round) >> shift;
211 buf_b[i] = clip23(buf_b[i] * (1 << shift));
295 int i, k, mag, shift, round;
301 shift = mag > 0x400000 ? 2 : 0;
302 round = shift > 0 ? 1 << (shift - 1) : 0;
305 buf_a[i] = (input[i] + round) >> shift;
350 buf_b[i] = clip23(buf_b[i] * (1 << shift));