Searched refs:bwl (Results 1 - 19 of 19) sorted by relevance

/external/libvpx/libvpx/vpx_dsp/
H A Davg.c165 // bwl: {2, 3, 4}
166 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl) { argument
168 int width = 4 << bwl;
178 var = sse - ((mean * mean) >> (bwl + 2));
/external/libvpx/libvpx/vpx_dsp/arm/
H A Davg_neon.c162 // bwl = {2, 3, 4}, width = {16, 32, 64}
163 int vpx_vector_var_neon(int16_t const *ref, int16_t const *src, const int bwl) { argument
164 int width = 4 << bwl;
198 const int shift_factor = bwl + 2;
/external/libvpx/libvpx/vpx_dsp/x86/
H A Davg_intrin_sse2.c383 int vpx_vector_var_sse2(int16_t const *ref, int16_t const *src, const int bwl) { argument
385 int width = 4 << bwl;
423 return _mm_cvtsi128_si32(sse) - ((mean * mean) >> (bwl + 2));
/external/libvpx/libvpx/vpx_dsp/mips/
H A Davg_msa.c565 int vpx_vector_var_msa(const int16_t *ref, const int16_t *src, const int bwl) { argument
574 if (2 == bwl) {
592 } else if (3 == bwl) {
618 } else if (4 == bwl) {
663 const int width = 4 << bwl;
676 var = sse - ((mean * mean) >> (bwl + 2));
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_decodeframe.c723 static void set_plane_n4(MACROBLOCKD *const xd, int bw, int bh, int bwl, argument
729 xd->plane[i].n4_wl = bwl - xd->plane[i].subsampling_x;
736 int bh, int x_mis, int y_mis, int bwl, int bhl) {
743 // TODO(slavarnway): Generate sb_type based on bwl and bhl, instead of
751 set_plane_n4(xd, bw, bh, bwl, bhl);
764 int mi_col, BLOCK_SIZE bsize, int bwl, int bhl) {
767 const int bw = 1 << (bwl - 1);
775 y_mis, bwl, bhl);
734 set_offsets(VP9_COMMON *const cm, MACROBLOCKD *const xd, BLOCK_SIZE bsize, int mi_row, int mi_col, int bw, int bh, int x_mis, int y_mis, int bwl, int bhl) argument
763 decode_block(TileWorkerData *twd, VP9Decoder *const pbi, int mi_row, int mi_col, BLOCK_SIZE bsize, int bwl, int bhl) argument
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_mcomp.c1719 static int vector_match(int16_t *ref, int16_t *src, int bwl) { argument
1724 int bw = 4 << bwl; // redundant variable, to be changed in the experiments.
1726 this_sad = vpx_vector_var(&ref[d], src, bwl);
1738 this_sad = vpx_vector_var(&ref[this_pos], src, bwl);
1750 this_sad = vpx_vector_var(&ref[this_pos], src, bwl);
1762 this_sad = vpx_vector_var(&ref[this_pos], src, bwl);
1774 this_sad = vpx_vector_var(&ref[this_pos], src, bwl);
H A Dvp9_encodemb.c764 const int bwl = b_width_log2_lookup[plane_bsize]; local
765 const int diff_stride = 4 * (1 << bwl);
798 xd, bwl, tx_size, mode, (x->skip_encode || x->fp_src_pred) ? src : dst,
H A Dvp9_rdopt.c2376 int bwl = b_width_log2_lookup[bsize]; local
2378 int tlevel = x->pred_mv_sad[ref] >> (bwl + bhl + 4);
/external/libvpx/config/arm-neon/
H A Dvpx_dsp_rtcd.h804 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl);
805 int vpx_vector_var_neon(const int16_t *ref, const int16_t *src, const int bwl);
/external/libvpx/config/arm64/
H A Dvpx_dsp_rtcd.h804 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl);
805 int vpx_vector_var_neon(const int16_t *ref, const int16_t *src, const int bwl);
/external/libvpx/config/mips32-msa/
H A Dvpx_dsp_rtcd.h868 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl);
869 int vpx_vector_var_msa(const int16_t *ref, const int16_t *src, const int bwl);
/external/libvpx/config/mips64-msa/
H A Dvpx_dsp_rtcd.h868 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl);
869 int vpx_vector_var_msa(const int16_t *ref, const int16_t *src, const int bwl);
/external/libvpx/config/x86/
H A Dvpx_dsp_rtcd.h930 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl);
931 int vpx_vector_var_sse2(const int16_t *ref, const int16_t *src, const int bwl);
/external/libvpx/config/x86_64/
H A Dvpx_dsp_rtcd.h934 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl);
935 int vpx_vector_var_sse2(const int16_t *ref, const int16_t *src, const int bwl);
/external/libvpx/config/arm/
H A Dvpx_dsp_rtcd.h685 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl);
/external/libvpx/config/generic/
H A Dvpx_dsp_rtcd.h685 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl);
/external/libvpx/config/mips32/
H A Dvpx_dsp_rtcd.h685 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl);
/external/libvpx/config/mips64/
H A Dvpx_dsp_rtcd.h685 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl);
/external/libvpx/config/mips32-dspr2/
H A Dvpx_dsp_rtcd.h726 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl);

Completed in 287 milliseconds