/external/libvpx/libvpx/vpx_dsp/ |
D | avg.c | 166 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/ |
D | avg_neon.c | 148 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/ |
D | writedec.inc | 21 ; writedec[bwl]: Write an unsigned decimal number in (AL, AX, EAX)
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | avg_intrin_sse2.c | 383 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/ |
D | avg_msa.c | 567 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/ |
D | vp9_mcomp.c | 1722 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()
|
D | vp9_encodemb.c | 746 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()
|
D | vp9_rdopt.c | 2377 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/ |
D | vp9_decodeframe.c | 707 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/ |
D | vpx_dsp_rtcd.h | 1650 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/ |
D | vpx_dsp_rtcd.h | 1650 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/ |
D | vpx_dsp_rtcd.h | 1740 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/ |
D | vpx_dsp_rtcd.h | 1740 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/ |
D | vpx_dsp_rtcd.h | 1965 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/ |
D | vpx_dsp_rtcd.h | 1972 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/ |
D | vpx_dsp_rtcd.h | 1497 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl);
|
/external/libvpx/config/generic/ |
D | vpx_dsp_rtcd.h | 1497 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl);
|
/external/libvpx/config/arm/ |
D | vpx_dsp_rtcd.h | 1497 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl);
|
/external/libvpx/config/mips32/ |
D | vpx_dsp_rtcd.h | 1497 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl);
|
/external/libvpx/config/mips32-dspr2/ |
D | vpx_dsp_rtcd.h | 1525 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl);
|