• Home
  • Raw
  • Download

Lines Matching refs:j

65 	int32_t 	j ;  in unmix16()  local
70 for (j = 0 ; j < numSamples ; j++) in unmix16()
74 l = u [j] + v [j] - ((mixres * v [j]) >> mixbits) ; in unmix16()
75 r = l - v [j] ; in unmix16()
85 for (j = 0 ; j < numSamples ; j++) in unmix16()
87 out [0] = u [j] << 16 ; in unmix16()
88 out [1] = v [j] << 16 ; in unmix16()
100 int32_t j ; in unmix20() local
105 for (j = 0 ; j < numSamples ; j++) in unmix20()
109 l = u [j] + v [j] - ((mixres * v [j]) >> mixbits) ; in unmix20()
110 r = l - v [j] ; in unmix20()
120 for (j = 0 ; j < numSamples ; j++) in unmix20()
122 out [0] = arith_shift_left (u [j], 12) ; in unmix20()
123 out [1] = arith_shift_left (v [j], 12) ; in unmix20()
138 int32_t j, k ; in unmix24() local
145 for (j = 0, k = 0 ; j < numSamples ; j++, k += 2) in unmix24()
147 l = u [j] + v [j] - ((mixres * v [j]) >> mixbits) ; in unmix24()
148 r = l - v [j] ; in unmix24()
160 for (j = 0 ; j < numSamples ; j++) in unmix24()
162 l = u [j] + v [j] - ((mixres * v [j]) >> mixbits) ; in unmix24()
163 r = l - v [j] ; in unmix24()
176 for (j = 0, k = 0 ; j < numSamples ; j++, k += 2) in unmix24()
178 l = u [j] ; in unmix24()
179 r = v [j] ; in unmix24()
191 for (j = 0 ; j < numSamples ; j++) in unmix24()
193 out [0] = u [j] << 8 ; in unmix24()
194 out [1] = v [j] << 8 ; in unmix24()
212 int32_t j, k ; in unmix32() local
219 for (j = 0, k = 0 ; j < numSamples ; j++, k += 2) in unmix32()
223 lt = u [j] ; in unmix32()
224 rt = v [j] ; in unmix32()
239 for (j = 0 ; j < numSamples ; j++) in unmix32()
241 out [0] = u [j] ; in unmix32()
242 out [1] = v [j] ; in unmix32()
249 for (j = 0, k = 0 ; j < numSamples ; j++, k += 2) 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()
264 int32_t j ; in copyPredictorTo24() local
266 for (j = 0 ; j < numSamples ; j++) in copyPredictorTo24()
268 out [0] = in [j] << 8 ; in copyPredictorTo24()
277 int32_t j ; in copyPredictorTo24Shift() local
281 for (j = 0 ; j < numSamples ; j++) in copyPredictorTo24Shift()
283 int32_t val = in [j] ; in copyPredictorTo24Shift()
285 val = arith_shift_left (val, shiftVal) | (uint32_t) shift [j] ; in copyPredictorTo24Shift()
294 int32_t j ; in copyPredictorTo20() local
298 for (j = 0 ; j < numSamples ; j++) in copyPredictorTo20()
300 out [0] = arith_shift_left (in [j], 12) ; in copyPredictorTo20()
308 int32_t i, j ; in copyPredictorTo32() local
311 for (i = 0, j = 0 ; i < numSamples ; i++, j += stride) in copyPredictorTo32()
312 out [j] = arith_shift_left (in [i], 8) ; in copyPredictorTo32()
320 int32_t j ; in copyPredictorTo32Shift() local
325 for (j = 0 ; j < numSamples ; j++) in copyPredictorTo32Shift()
327 op [0] = arith_shift_left (in [j], shiftVal) | (uint32_t) shift [j] ; in copyPredictorTo32Shift()