Lines Matching refs:input_shift
306 int input_shift) { in highbd_img_upshift() argument
308 const int offset = input_shift > 0 ? (1 << (input_shift - 1)) - 1 : 0; in highbd_img_upshift()
313 input_shift < 0) { in highbd_img_upshift()
335 for (x = 0; x < w; x++) *p_dst++ = (*p_src++ << input_shift) + offset; in highbd_img_upshift()
341 int input_shift) { in lowbd_img_upshift() argument
343 const int offset = input_shift > 0 ? (1 << (input_shift - 1)) - 1 : 0; in lowbd_img_upshift()
348 dst->fmt != src->fmt + AOM_IMG_FMT_HIGHBITDEPTH || input_shift < 0) { in lowbd_img_upshift()
371 *p_dst++ = (*p_src++ << input_shift) + offset; in lowbd_img_upshift()
378 int input_shift) { in aom_img_upshift() argument
380 highbd_img_upshift(dst, src, input_shift); in aom_img_upshift()
382 lowbd_img_upshift(dst, src, input_shift); in aom_img_upshift()