Lines Matching defs:shift

62 *  dst = ( (src + lvl_shift) * wgt0 + (1 << (shift - 1)) )  >> shift +
86 * @param[in] shift
90 * added before shift and offset
112 WORD32 shift,
125 i4_tmp += 1 << (shift - 1);
126 i4_tmp = (i4_tmp >> shift) + off0;
145 * dst = ( (src + lvl_shift) * wgt0 + (1 << (shift - 1)) ) >> shift +
169 * @param[in] shift
173 * added before shift and offset
197 WORD32 shift,
210 i4_tmp += 1 << (shift - 1);
211 i4_tmp = (i4_tmp >> shift) + off0_cb;
216 i4_tmp += 1 << (shift - 1);
217 i4_tmp = (i4_tmp >> shift) + off0_cr;
237 * off1 + 1) << (shift - 1) ) >> shift
269 * @param[in] shift
273 * added before shift and offset
276 * added before shift and offset
302 WORD32 shift,
317 i4_tmp += (off0 + off1 + 1) << (shift - 1);
319 pu1_dst[col] = CLIP_U8(i4_tmp >> shift);
338 * off1 + 1) << (shift - 1) ) >> shift
370 * @param[in] shift
374 * added before shift and offset
377 * added before shift and offset
407 WORD32 shift,
422 i4_tmp += (off0_cb + off1_cb + 1) << (shift - 1);
424 pu1_dst[col] = CLIP_U8(i4_tmp >> shift);
428 i4_tmp += (off0_cr + off1_cr + 1) << (shift - 1);
430 pu1_dst[col + 1] = CLIP_U8(i4_tmp >> shift);
448 * dst = ( (src1 + lvl_shift1) + (src2 + lvl_shift2) + 1 << (shift - 1) )
449 * >> shift where shift = 15 - BitDepth
470 * added before shift and offset
473 * added before shift and offset
502 WORD32 shift;
504 shift = SHIFT_14_MINUS_BIT_DEPTH + 1;
511 i4_tmp += 1 << (shift - 1);
513 pu1_dst[col] = CLIP_U8(i4_tmp >> shift);
531 * dst = ( (src1 + lvl_shift1) + (src2 + lvl_shift2) + 1 << (shift - 1) )
532 * >> shift where shift = 15 - BitDepth
553 * added before shift and offset
556 * added before shift and offset
585 WORD32 shift;
587 shift = SHIFT_14_MINUS_BIT_DEPTH + 1;
594 i4_tmp += 1 << (shift - 1);
596 pu1_dst[col] = CLIP_U8(i4_tmp >> shift);