HomeSort by relevance Sort by last modified time
    Searched refs:comp_pred (Results 1 - 19 of 19) sorted by null

  /external/libvpx/libvpx/vpx_dsp/ppc/
variance_vsx.c 58 void vpx_comp_avg_pred_vsx(uint8_t *comp_pred, const uint8_t *pred, int width,
61 /* comp_pred and pred must be 16 byte aligned. */
62 assert(((intptr_t)comp_pred & 0xf) == 0);
68 vec_vsx_st(v, j, comp_pred);
70 comp_pred += width;
81 vec_vsx_st(v, 0, comp_pred);
82 comp_pred += 16; // width * 2;
97 vec_vsx_st(v, 0, comp_pred);
98 comp_pred += 16; // width * 4;
sad_vsx.c 111 DECLARE_ALIGNED(16, uint8_t, comp_pred[16 * height]); \
112 vpx_comp_avg_pred_vsx(comp_pred, second_pred, 16, height, ref, \
115 return vpx_sad16x##height##_vsx(src, src_stride, comp_pred, 16); \
122 DECLARE_ALIGNED(32, uint8_t, comp_pred[32 * height]); \
123 vpx_comp_avg_pred_vsx(comp_pred, second_pred, 32, height, ref, \
126 return vpx_sad32x##height##_vsx(src, src_stride, comp_pred, 32); \
133 DECLARE_ALIGNED(64, uint8_t, comp_pred[64 * height]); \
134 vpx_comp_avg_pred_vsx(comp_pred, second_pred, 64, height, ref, \
136 return vpx_sad64x##height##_vsx(src, src_stride, comp_pred, 64); \
  /external/libvpx/libvpx/vpx_dsp/
sad.c 42 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); \
175 DECLARE_ALIGNED(16, uint16_t, comp_pred[m * n]); \
176 vpx_highbd_comp_avg_pred_c(comp_pred, second_pred, m, n, ref, ref_stride); \
177 return highbd_sadb(src, src_stride, comp_pred, m, m, n); \
variance.c 224 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width,
231 comp_pred[j] = ROUND_POWER_OF_TWO(tmp, 1);
233 comp_pred += width;
541 void vpx_highbd_comp_avg_pred(uint16_t *comp_pred, const uint8_t *pred8,
550 comp_pred[j] = ROUND_POWER_OF_TWO(tmp, 1);
552 comp_pred += width;
  /external/libvpx/libvpx/test/
sad_test.cc 171 const uint8_t comp_pred = ROUND_POWER_OF_TWO(tmp, 1); local
172 sad += abs(source8[h * source_stride_ + w] - comp_pred);
177 const uint16_t comp_pred = ROUND_POWER_OF_TWO(tmp, 1); local
178 sad += abs(source16[h * source_stride_ + w] - comp_pred);
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_rdopt.c 3041 int comp_pred, i, k; local
3710 const int comp_pred = 0; local
3810 int comp_pred, i; local
    [all...]
vp9_mcomp.c 337 DECLARE_ALIGNED(16, uint8_t, comp_pred[64 * 64]);
338 vpx_comp_avg_pred(comp_pred, second_pred, w, h, y + offset, y_stride);
339 besterr = vfp->vf(comp_pred, w, src, src_stride, sse1);
352 DECLARE_ALIGNED(16, uint8_t, comp_pred[64 * 64]);
353 vpx_comp_avg_pred(comp_pred, second_pred, w, h, y + offset, y_stride);
354 besterr = vfp->vf(comp_pred, w, src, src_stride, sse1);
    [all...]
vp9_pickmode.c 1677 int comp_pred = 0; local
    [all...]
  /external/libvpx/config/arm-neon/
vpx_dsp_rtcd.h 32 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint8_t *ref, int ref_stride);
33 void vpx_comp_avg_pred_neon(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint8_t *ref, int ref_stride);
    [all...]
  /external/libvpx/config/arm64/
vpx_dsp_rtcd.h 32 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint8_t *ref, int ref_stride);
33 void vpx_comp_avg_pred_neon(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint8_t *ref, int ref_stride);
    [all...]
  /external/libvpx/config/x86/
vpx_dsp_rtcd.h 32 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint8_t *ref, int ref_stride);
33 void vpx_comp_avg_pred_sse2(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint8_t *ref, int ref_stride);
    [all...]
  /external/libvpx/config/arm/
vpx_dsp_rtcd.h 30 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint8_t *ref, int ref_stride);
    [all...]
  /external/libvpx/config/generic/
vpx_dsp_rtcd.h 30 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint8_t *ref, int ref_stride);
    [all...]
  /external/libvpx/config/mips32/
vpx_dsp_rtcd.h 30 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint8_t *ref, int ref_stride);
    [all...]
  /external/libvpx/config/mips32-dspr2/
vpx_dsp_rtcd.h 30 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint8_t *ref, int ref_stride);
    [all...]
  /external/libvpx/config/mips32-msa/
vpx_dsp_rtcd.h 32 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint8_t *ref, int ref_stride);
    [all...]
  /external/libvpx/config/mips64/
vpx_dsp_rtcd.h 30 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint8_t *ref, int ref_stride);
    [all...]
  /external/libvpx/config/mips64-msa/
vpx_dsp_rtcd.h 32 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint8_t *ref, int ref_stride);
    [all...]
  /external/libvpx/config/x86_64/
vpx_dsp_rtcd.h 32 void vpx_comp_avg_pred_c(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint8_t *ref, int ref_stride);
33 void vpx_comp_avg_pred_sse2(uint8_t *comp_pred, const uint8_t *pred, int width, int height, const uint8_t *ref, int ref_stride);
    [all...]

Completed in 379 milliseconds