Home
last modified time | relevance | path

Searched refs:bwl (Results 1 – 20 of 20) sorted by relevance

/external/libvpx/libvpx/vpx_dsp/
Davg.c166 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl) { in vpx_vector_var_c() argument
168 int width = 4 << bwl; in vpx_vector_var_c()
178 var = sse - ((mean * mean) >> (bwl + 2)); in vpx_vector_var_c()
/external/libvpx/libvpx/vpx_dsp/arm/
Davg_neon.c148 int vpx_vector_var_neon(int16_t const *ref, int16_t const *src, const int bwl) { in vpx_vector_var_neon() argument
149 int width = 4 << bwl; in vpx_vector_var_neon()
183 const int shift_factor = bwl + 2; in vpx_vector_var_neon()
/external/syslinux/core/
Dwritedec.inc21 ; writedec[bwl]: Write an unsigned decimal number in (AL, AX, EAX)
/external/libvpx/libvpx/vpx_dsp/x86/
Davg_intrin_sse2.c383 int vpx_vector_var_sse2(int16_t const *ref, int16_t const *src, const int bwl) { in vpx_vector_var_sse2() argument
385 int width = 4 << bwl; in vpx_vector_var_sse2()
423 return _mm_cvtsi128_si32(sse) - ((mean * mean) >> (bwl + 2)); in vpx_vector_var_sse2()
/external/libvpx/libvpx/vpx_dsp/mips/
Davg_msa.c567 int vpx_vector_var_msa(const int16_t *ref, const int16_t *src, const int bwl) { in vpx_vector_var_msa() argument
576 if (2 == bwl) { in vpx_vector_var_msa()
594 } else if (3 == bwl) { in vpx_vector_var_msa()
620 } else if (4 == bwl) { in vpx_vector_var_msa()
665 const int width = 4 << bwl; in vpx_vector_var_msa()
678 var = sse - ((mean * mean) >> (bwl + 2)); in vpx_vector_var_msa()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_mcomp.c1722 static int vector_match(int16_t *ref, int16_t *src, int bwl) { in vector_match() argument
1727 int bw = 4 << bwl; // redundant variable, to be changed in the experiments. in vector_match()
1729 this_sad = vpx_vector_var(&ref[d], src, bwl); in vector_match()
1741 this_sad = vpx_vector_var(&ref[this_pos], src, bwl); in vector_match()
1753 this_sad = vpx_vector_var(&ref[this_pos], src, bwl); in vector_match()
1765 this_sad = vpx_vector_var(&ref[this_pos], src, bwl); in vector_match()
1777 this_sad = vpx_vector_var(&ref[this_pos], src, bwl); in vector_match()
Dvp9_encodemb.c746 const int bwl = b_width_log2_lookup[plane_bsize]; in vp9_encode_block_intra() local
747 const int diff_stride = 4 * (1 << bwl); in vp9_encode_block_intra()
780 xd, bwl, tx_size, mode, (x->skip_encode || x->fp_src_pred) ? src : dst, in vp9_encode_block_intra()
Dvp9_rdopt.c2377 int bwl = b_width_log2_lookup[bsize]; in single_motion_search() local
2379 int tlevel = x->pred_mv_sad[ref] >> (bwl + bhl + 4); in single_motion_search()
/external/libvpx/libvpx/vp9/decoder/
Dvp9_decodeframe.c707 static void set_plane_n4(MACROBLOCKD *const xd, int bw, int bh, int bwl, in set_plane_n4() argument
713 xd->plane[i].n4_wl = bwl - xd->plane[i].subsampling_x; in set_plane_n4()
720 int bh, int x_mis, int y_mis, int bwl, int bhl) { in set_offsets() argument
735 set_plane_n4(xd, bw, bh, bwl, bhl); in set_offsets()
748 int mi_col, BLOCK_SIZE bsize, int bwl, int bhl) { in decode_block() argument
751 const int bw = 1 << (bwl - 1); in decode_block()
759 y_mis, bwl, bhl); in decode_block()
/external/libvpx/config/mips32-msa/
Dvpx_dsp_rtcd.h1650 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl);
1651 int vpx_vector_var_msa(const int16_t *ref, const int16_t *src, const int bwl);
/external/libvpx/config/mips64-msa/
Dvpx_dsp_rtcd.h1650 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl);
1651 int vpx_vector_var_msa(const int16_t *ref, const int16_t *src, const int bwl);
/external/libvpx/config/arm64/
Dvpx_dsp_rtcd.h1740 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl);
1741 int vpx_vector_var_neon(const int16_t *ref, const int16_t *src, const int bwl);
/external/libvpx/config/arm-neon/
Dvpx_dsp_rtcd.h1740 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl);
1741 int vpx_vector_var_neon(const int16_t *ref, const int16_t *src, const int bwl);
/external/libvpx/config/x86/
Dvpx_dsp_rtcd.h1965 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl);
1966 int vpx_vector_var_sse2(const int16_t *ref, const int16_t *src, const int bwl);
/external/libvpx/config/x86_64/
Dvpx_dsp_rtcd.h1972 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl);
1973 int vpx_vector_var_sse2(const int16_t *ref, const int16_t *src, const int bwl);
/external/libvpx/config/mips64/
Dvpx_dsp_rtcd.h1497 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl);
/external/libvpx/config/generic/
Dvpx_dsp_rtcd.h1497 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl);
/external/libvpx/config/arm/
Dvpx_dsp_rtcd.h1497 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl);
/external/libvpx/config/mips32/
Dvpx_dsp_rtcd.h1497 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl);
/external/libvpx/config/mips32-dspr2/
Dvpx_dsp_rtcd.h1525 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl);