Lines Matching refs:b_w
440 int dst_stride, int x, int y, int b_w, int b_h, in build_mc_border() argument
454 if (left > b_w) left = b_w; in build_mc_border()
456 if (x + b_w > w) right = x + b_w - w; in build_mc_border()
458 if (right > b_w) right = b_w; in build_mc_border()
460 copy = b_w - left - right; in build_mc_border()
478 int b_w, int b_h, int w, int h) { in high_build_mc_border() argument
492 if (left > b_w) left = b_w; in high_build_mc_border()
494 if (x + b_w > w) right = x + b_w - w; in high_build_mc_border()
496 if (right > b_w) right = b_w; in high_build_mc_border()
498 copy = b_w - left - right; in high_build_mc_border()
516 int x0, int y0, int b_w, int b_h, in extend_and_predict() argument
526 high_build_mc_border(buf_ptr1, pre_buf_stride, mc_buf_high, b_w, x0, y0, in extend_and_predict()
527 b_w, b_h, frame_width, frame_height); in extend_and_predict()
528 highbd_inter_predictor(mc_buf_high + border_offset, b_w, in extend_and_predict()
532 build_mc_border(buf_ptr1, pre_buf_stride, (uint8_t *)mc_buf_high, b_w, x0, in extend_and_predict()
533 y0, b_w, b_h, frame_width, frame_height); in extend_and_predict()
534 inter_predictor(((uint8_t *)mc_buf_high) + border_offset, b_w, dst, in extend_and_predict()
541 int x0, int y0, int b_w, int b_h, in extend_and_predict() argument
551 build_mc_border(buf_ptr1, pre_buf_stride, mc_buf, b_w, x0, y0, b_w, b_h, in extend_and_predict()
555 inter_predictor(buf_ptr, b_w, dst, dst_buf_stride, subpel_x, subpel_y, sf, w, in extend_and_predict()
669 const int b_w = x1 - x0 + 1; in dec_build_inter_predictors() local
671 const int border_offset = y_pad * 3 * b_w + x_pad * 3; in dec_build_inter_predictors()
673 extend_and_predict(buf_ptr1, buf_stride, x0, y0, b_w, b_h, frame_width, in dec_build_inter_predictors()