/external/libvpx/libvpx/vp9/encoder/arm/neon/ |
D | vp9_avg_neon.c | 122 int vp9_vector_var_neon(int16_t const *ref, int16_t const *src, const int bwl) { in vp9_vector_var_neon() argument 123 int width = 4 << bwl; in vp9_vector_var_neon() 157 const int shift_factor = bwl + 2; in vp9_vector_var_neon()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_avg.c | 162 const int bwl) { in vp9_vector_var_c() argument 164 int width = 4 << bwl; in vp9_vector_var_c() 174 var = sse - ((mean * mean) >> (bwl + 2)); in vp9_vector_var_c()
|
D | vp9_mcomp.c | 1741 static int vector_match(int16_t *ref, int16_t *src, int bwl) { in vector_match() argument 1746 int bw = 4 << bwl; // redundant variable, to be changed in the experiments. in vector_match() 1748 this_sad = vp9_vector_var(&ref[d], src, bwl); in vector_match() 1761 this_sad = vp9_vector_var(&ref[this_pos], src, bwl); in vector_match() 1774 this_sad = vp9_vector_var(&ref[this_pos], src, bwl); in vector_match() 1787 this_sad = vp9_vector_var(&ref[this_pos], src, bwl); in vector_match() 1800 this_sad = vp9_vector_var(&ref[this_pos], src, bwl); in vector_match()
|
D | vp9_encodemb.c | 778 const int bwl = b_width_log2_lookup[plane_bsize]; in vp9_encode_block_intra() local 779 const int diff_stride = 4 * (1 << bwl); in vp9_encode_block_intra() 805 vp9_predict_intra_block(xd, bwl, tx_size, mode, x->skip_encode ? src : dst, in vp9_encode_block_intra()
|
D | vp9_rdopt.c | 2285 int bwl = b_width_log2_lookup[bsize]; in single_motion_search() local 2287 int tlevel = x->pred_mv_sad[ref] >> (bwl + bhl + 4); in single_motion_search()
|
/external/libvpx/config/arm64/ |
D | vp9_rtcd.h | 112 int vp9_vector_var_c(int16_t const *ref, int16_t const *src, const int bwl); 113 int vp9_vector_var_neon(int16_t const *ref, int16_t const *src, const int bwl);
|
/external/libvpx/config/arm-neon/ |
D | vp9_rtcd.h | 112 int vp9_vector_var_c(int16_t const *ref, int16_t const *src, const int bwl); 113 int vp9_vector_var_neon(int16_t const *ref, int16_t const *src, const int bwl);
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_blockd.h | 294 const int bwl = b_width_log2_lookup[plane_bsize]; in txfrm_block_to_raster_xy() local 295 const int tx_cols_log2 = bwl - tx_size; in txfrm_block_to_raster_xy()
|
/external/libvpx/config/x86/ |
D | vp9_rtcd.h | 126 int vp9_vector_var_c(int16_t const *ref, int16_t const *src, const int bwl); 127 int vp9_vector_var_sse2(int16_t const *ref, int16_t const *src, const int bwl);
|
/external/libvpx/config/x86_64/ |
D | vp9_rtcd.h | 129 int vp9_vector_var_c(int16_t const *ref, int16_t const *src, const int bwl); 130 int vp9_vector_var_sse2(int16_t const *ref, int16_t const *src, const int bwl);
|
/external/libvpx/libvpx/vp9/encoder/x86/ |
D | vp9_avg_intrin_sse2.c | 383 const int bwl) { in vp9_vector_var_sse2() argument 385 int width = 4 << bwl; in vp9_vector_var_sse2() 423 return _mm_cvtsi128_si32(sse) - ((mean * mean) >> (bwl + 2)); in vp9_vector_var_sse2()
|
/external/libvpx/config/mips32/ |
D | vp9_rtcd.h | 104 int vp9_vector_var_c(int16_t const *ref, int16_t const *src, const int bwl);
|
/external/libvpx/config/generic/ |
D | vp9_rtcd.h | 104 int vp9_vector_var_c(int16_t const *ref, int16_t const *src, const int bwl);
|
/external/libvpx/config/mips64/ |
D | vp9_rtcd.h | 104 int vp9_vector_var_c(int16_t const *ref, int16_t const *src, const int bwl);
|
/external/libvpx/config/arm/ |
D | vp9_rtcd.h | 104 int vp9_vector_var_c(int16_t const *ref, int16_t const *src, const int bwl);
|
/external/libvpx/config/mips32-dspr2/ |
D | vp9_rtcd.h | 107 int vp9_vector_var_c(int16_t const *ref, int16_t const *src, const int bwl);
|
/external/libvpx/libvpx/vp9/decoder/ |
D | vp9_decodeframe.c | 774 static void set_plane_n4(MACROBLOCKD *const xd, int bw, int bh, int bwl, in set_plane_n4() argument 780 xd->plane[i].n4_wl = bwl - xd->plane[i].subsampling_x; in set_plane_n4() 788 int bwl, int bhl) { in set_offsets() argument 803 set_plane_n4(xd, bw, bh, bwl, bhl); in set_offsets() 818 int bwl, int bhl) { in decode_block() argument 821 const int bw = 1 << (bwl - 1); in decode_block() 827 bw, bh, x_mis, y_mis, bwl, bhl); in decode_block()
|