Home
last modified time | relevance | path

Searched refs:comp_pred (Results 1 – 18 of 18) sorted by relevance

/external/libvpx/libvpx/vpx_dsp/ppc/
Dvariance_vsx.c58 void vpx_comp_avg_pred_vsx(uint8_t *comp_pred, const uint8_t *pred, int width, in vpx_comp_avg_pred_vsx() argument
62 assert(((intptr_t)comp_pred & 0xf) == 0); in vpx_comp_avg_pred_vsx()
68 vec_vsx_st(v, j, comp_pred); in vpx_comp_avg_pred_vsx()
70 comp_pred += width; in vpx_comp_avg_pred_vsx()
81 vec_vsx_st(v, 0, comp_pred); in vpx_comp_avg_pred_vsx()
82 comp_pred += 16; // width * 2; in vpx_comp_avg_pred_vsx()
97 vec_vsx_st(v, 0, comp_pred); in vpx_comp_avg_pred_vsx()
98 comp_pred += 16; // width * 4; in vpx_comp_avg_pred_vsx()
/external/libvpx/libvpx/vpx_dsp/
Dsad.c42 DECLARE_ALIGNED(16, uint8_t, comp_pred[m * n]); \
43 vpx_comp_avg_pred_c(comp_pred, second_pred, m, n, ref, ref_stride); \
44 return sad(src, src_stride, comp_pred, m, m, n); \
181 DECLARE_ALIGNED(16, uint16_t, comp_pred[m * n]); \
182 vpx_highbd_comp_avg_pred_c(comp_pred, second_pred, m, n, ref, ref_stride); \
183 return highbd_sadb(src, src_stride, comp_pred, m, m, n); \
Dvariance.c226 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, in vpx_comp_avg_pred_c() argument
230 assert(((intptr_t)comp_pred & 0xf) == 0); in vpx_comp_avg_pred_c()
236 comp_pred[j] = ROUND_POWER_OF_TWO(tmp, 1); in vpx_comp_avg_pred_c()
238 comp_pred += width; in vpx_comp_avg_pred_c()
546 void vpx_highbd_comp_avg_pred(uint16_t *comp_pred, const uint8_t *pred8, in vpx_highbd_comp_avg_pred() argument
555 comp_pred[j] = ROUND_POWER_OF_TWO(tmp, 1); in vpx_highbd_comp_avg_pred()
557 comp_pred += width; in vpx_highbd_comp_avg_pred()
Dvpx_dsp_rtcd_defs.pl1177 add_proto qw/void vpx_comp_avg_pred/, "uint8_t *comp_pred, const uint8_t *pred, int width, int heig…
1397 …add_proto qw/void vpx_highbd_comp_avg_pred/, "uint16_t *comp_pred, const uint8_t *pred8, int width…
/external/libvpx/libvpx/test/
Dsad_test.cc171 const uint8_t comp_pred = ROUND_POWER_OF_TWO(tmp, 1); in ReferenceSADavg() local
172 sad += abs(source8[h * source_stride_ + w] - comp_pred); in ReferenceSADavg()
177 const uint16_t comp_pred = ROUND_POWER_OF_TWO(tmp, 1); in ReferenceSADavg() local
178 sad += abs(source16[h * source_stride_ + w] - comp_pred); in ReferenceSADavg()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_rdopt.c3015 int comp_pred, i, k; in vp9_rd_pick_inter_mode_sb() local
3286 comp_pred = second_ref_frame > INTRA_FRAME; in vp9_rd_pick_inter_mode_sb()
3287 if (comp_pred) { in vp9_rd_pick_inter_mode_sb()
3354 if (comp_pred) xd->plane[i].pre[1] = yv12_mb[second_ref_frame][i]; in vp9_rd_pick_inter_mode_sb()
3390 compmode_cost = vp9_cost_bit(comp_mode_p, comp_pred); in vp9_rd_pick_inter_mode_sb()
3397 if (comp_pred) { in vp9_rd_pick_inter_mode_sb()
3527 if (!comp_pred) { in vp9_rd_pick_inter_mode_sb()
3564 if (x->skip && !comp_pred) break; in vp9_rd_pick_inter_mode_sb()
3684 const int comp_pred = 0; in vp9_rd_pick_inter_mode_sb_seg_skip() local
3741 rate2 += vp9_cost_bit(comp_mode_p, comp_pred); in vp9_rd_pick_inter_mode_sb_seg_skip()
[all …]
Dvp9_mcomp.c337 DECLARE_ALIGNED(16, uint8_t, comp_pred[64 * 64]); in setup_center_error()
338 vpx_comp_avg_pred(comp_pred, second_pred, w, h, y + offset, y_stride); in setup_center_error()
339 besterr = vfp->vf(comp_pred, w, src, src_stride, sse1); in setup_center_error()
352 DECLARE_ALIGNED(16, uint8_t, comp_pred[64 * 64]); in setup_center_error()
353 vpx_comp_avg_pred(comp_pred, second_pred, w, h, y + offset, y_stride); in setup_center_error()
354 besterr = vfp->vf(comp_pred, w, src, src_stride, sse1); in setup_center_error()
/external/libvpx/config/x86/
Dvpx_dsp_rtcd.h30 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint…
31 void vpx_comp_avg_pred_sse2(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const u…
/external/libvpx/config/x86_64/
Dvpx_dsp_rtcd.h30 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint…
31 void vpx_comp_avg_pred_sse2(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const u…
/external/libvpx/config/mips64/
Dvpx_dsp_rtcd.h28 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint…
/external/libvpx/config/arm/
Dvpx_dsp_rtcd.h28 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint…
/external/libvpx/config/mips32/
Dvpx_dsp_rtcd.h28 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint…
/external/libvpx/config/generic/
Dvpx_dsp_rtcd.h28 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint…
/external/libvpx/config/mips32-dspr2/
Dvpx_dsp_rtcd.h28 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint…
/external/libvpx/config/arm64/
Dvpx_dsp_rtcd.h30 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint…
/external/libvpx/config/arm-neon/
Dvpx_dsp_rtcd.h30 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint…
/external/libvpx/config/mips64-msa/
Dvpx_dsp_rtcd.h30 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint…
/external/libvpx/config/mips32-msa/
Dvpx_dsp_rtcd.h30 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint…