Home
last modified time | relevance | path

Searched refs:shiftUV (Results 1 – 3 of 3) sorted by relevance

/third_party/libsnd/src/ALAC/
Dmatrix_enc.c127 int32_t mixbits, int32_t mixres, uint16_t * shiftUV, int32_t bytesShifted) in mix24() argument
148 shiftUV [k + 0] = (uint16_t) (l & mask) ; in mix24()
149 shiftUV [k + 1] = (uint16_t) (r & mask) ; in mix24()
182 shiftUV [k + 0] = (uint16_t) (l & mask) ; in mix24()
183 shiftUV [k + 1] = (uint16_t) (r & mask) ; in mix24()
211 int32_t mixbits, int32_t mixres, uint16_t * shiftUV, int32_t bytesShifted) in mix32() argument
233 shiftUV [k + 0] = (uint16_t) (l & mask) ; in mix32()
234 shiftUV [k + 1] = (uint16_t) (r & mask) ; in mix32()
264 shiftUV [k + 0] = (uint16_t) (l & mask) ; in mix32()
265 shiftUV [k + 1] = (uint16_t) (r & mask) ; in mix32()
Dmatrix_dec.c134 int32_t mixbits, int32_t mixres, uint16_t * shiftUV, int32_t bytesShifted) in unmix24() argument
150 l = arith_shift_left (l, shift) | (uint32_t) shiftUV [k + 0] ; in unmix24()
151 r = arith_shift_left (r, shift) | (uint32_t) shiftUV [k + 1] ; in unmix24()
181 l = (l << shift) | (uint32_t) shiftUV [k + 0] ; in unmix24()
182 r = (r << shift) | (uint32_t) shiftUV [k + 1] ; in unmix24()
208 int32_t mixbits, int32_t mixres, uint16_t * shiftUV, int32_t bytesShifted) in unmix32() argument
229 out [0] = arith_shift_left (l, shift) | (uint32_t) shiftUV [k + 0] ; in unmix32()
230 out [1] = arith_shift_left (r, shift) | (uint32_t) shiftUV [k + 1] ; in unmix32()
251 out [0] = (u [j] << shift) | (uint32_t) shiftUV [k + 0] ; in unmix32()
252 out [1] = (v [j] << shift) | (uint32_t) shiftUV [k + 1] ; in unmix32()
Dmatrixlib.h53 int32_t mixbits, int32_t mixres, uint16_t * shiftUV, int32_t bytesShifted) ;
55 int32_t mixbits, int32_t mixres, uint16_t * shiftUV, int32_t bytesShifted) ;
62 int32_t mixbits, int32_t mixres, uint16_t * shiftUV, int32_t bytesShifted) ;
64 int32_t mixbits, int32_t mixres, uint16_t * shiftUV, int32_t bytesShifted) ;