Lines Matching defs:shift
32 #include "shift.h"
136 int32_t shift = bytesShifted * 8 ;
150 l = arith_shift_left (l, shift) | (uint32_t) shiftUV [k + 0] ;
151 r = arith_shift_left (r, shift) | (uint32_t) shiftUV [k + 1] ;
181 l = (l << shift) | (uint32_t) shiftUV [k + 0] ;
182 r = (r << shift) | (uint32_t) shiftUV [k + 1] ;
204 // - therefore, these routines deal with the specified "unused lower" bytes in the "shift" buffers
210 int32_t shift = bytesShifted * 8 ;
218 /* matrixed stereo with shift */
229 out [0] = arith_shift_left (l, shift) | (uint32_t) shiftUV [k + 0] ;
230 out [1] = arith_shift_left (r, shift) | (uint32_t) shiftUV [k + 1] ;
238 /* interleaving w/o shift */
248 /* interleaving with shift */
251 out [0] = (u [j] << shift) | (uint32_t) shiftUV [k + 0] ;
252 out [1] = (v [j] << shift) | (uint32_t) shiftUV [k + 1] ;
274 copyPredictorTo24Shift (const int32_t * in, uint16_t * shift, int32_t * out, uint32_t stride, int32_t numSamples, int32_t bytesShifted)
285 val = arith_shift_left (val, shiftVal) | (uint32_t) shift [j] ;
316 copyPredictorTo32Shift (const int32_t * in, uint16_t * shift, int32_t * out, uint32_t stride, int32_t numSamples, int32_t bytesShifted)
327 op [0] = arith_shift_left (in [j], shiftVal) | (uint32_t) shift [j] ;