/external/libaom/libaom/av1/common/ |
D | txb_common.h | 77 static INLINE int get_padded_idx(const int idx, const int bwl) { in get_padded_idx() argument 78 return idx + ((idx >> bwl) << TX_PAD_HOR_LOG2); in get_padded_idx() 147 const int bwl) { in get_br_ctx_2d() argument 149 const int row = c >> bwl; in get_br_ctx_2d() 150 const int col = c - (row << bwl); in get_br_ctx_2d() 151 const int stride = (1 << bwl) + TX_PAD_HOR; in get_br_ctx_2d() 163 const int bwl, in get_br_ctx_eob() argument 165 const int row = c >> bwl; in get_br_ctx_eob() 166 const int col = c - (row << bwl); in get_br_ctx_eob() 177 const int bwl, const TX_CLASS tx_class) { in get_br_ctx() argument [all …]
|
/external/libaom/libaom/av1/decoder/ |
D | decodetxb.c | 64 const int16_t *scan, int bwl, in read_coeffs_reverse_2d() argument 70 const int coeff_ctx = get_lower_levels_ctx_2d(levels, pos, bwl, tx_size); in read_coeffs_reverse_2d() 74 const int br_ctx = get_br_ctx_2d(levels, pos, bwl); in read_coeffs_reverse_2d() 82 levels[get_padded_idx(pos, bwl)] = level; in read_coeffs_reverse_2d() 88 int end_si, const int16_t *scan, int bwl, in read_coeffs_reverse() argument 94 get_lower_levels_ctx(levels, pos, bwl, tx_size, tx_class); in read_coeffs_reverse() 98 const int br_ctx = get_br_ctx(levels, pos, bwl, tx_class); in read_coeffs_reverse() 106 levels[get_padded_idx(pos, bwl)] = level; in read_coeffs_reverse() 125 const int bwl = get_txb_bwl(tx_size); in av1_read_coeffs_txb() local 252 const int coeff_ctx = get_lower_levels_ctx_eob(bwl, height, c); in av1_read_coeffs_txb() [all …]
|
/external/libaom/libaom/av1/encoder/ |
D | encodetxb.c | 346 get_br_ctx(txb_info->levels, pos, txb_info->bwl, tx_class); 354 const int coeff_idx, const int bwl, argument 360 if (scan_idx <= (height << bwl) / 8) return 1; 361 if (scan_idx <= (height << bwl) / 4) return 2; 365 get_nz_mag(levels + get_padded_idx(coeff_idx, bwl), bwl, tx_class); 366 return get_nz_map_ctx_from_stats(stats, coeff_idx, bwl, tx_size, tx_class); 390 get_nz_map_ctx(levels, coeff_idx, txb_info->bwl, txb_info->height, 442 txb_info->levels, coeff_idx, txb_info->bwl, txb_info->height, scan_idx, 1, 462 txb_info->levels[get_padded_idx(coeff_idx, txb_info->bwl)] = 496 const int bwl = get_txb_bwl(tx_size); local [all …]
|
D | encodetxb.h | 37 int bwl; member
|
D | mcomp.c | 2100 static int vector_match(int16_t *ref, int16_t *src, int bwl) { in vector_match() argument 2105 int bw = 4 << bwl; // redundant variable, to be changed in the experiments. in vector_match() 2107 this_sad = aom_vector_var(&ref[d], src, bwl); in vector_match() 2119 this_sad = aom_vector_var(&ref[this_pos], src, bwl); in vector_match() 2131 this_sad = aom_vector_var(&ref[this_pos], src, bwl); in vector_match() 2143 this_sad = aom_vector_var(&ref[this_pos], src, bwl); in vector_match() 2155 this_sad = aom_vector_var(&ref[this_pos], src, bwl); in vector_match()
|
D | rdopt.c | 7107 int bwl = mi_size_wide_log2[bsize]; in single_motion_search() local 7109 int tlevel = x->pred_mv_sad[ref] >> (bwl + bhl + 4); in single_motion_search()
|
/external/libaom/libaom/test/ |
D | encodetxb_test.cc | 70 const int bwl = get_txb_bwl((TX_SIZE)tx_size); in GetNzMapContextsRun() local 80 InitDataWithEob(scan, bwl, eob); in GetNzMapContextsRun() 105 const int bwl = get_txb_bwl((TX_SIZE)tx_size); in SpeedTestGetNzMapContextsRun() local 117 InitDataWithEob(scan, bwl, eob); in SpeedTestGetNzMapContextsRun() 133 void InitDataWithEob(const int16_t *const scan, const int bwl, in InitDataWithEob() argument 139 levels_[get_padded_idx(scan[c], bwl)] = in InitDataWithEob()
|
/external/libaom/libaom/aom_dsp/ |
D | avg.c | 213 int aom_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl) { in aom_vector_var_c() argument 215 int width = 4 << bwl; in aom_vector_var_c() 225 var = sse - ((mean * mean) >> (bwl + 2)); in aom_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/libaom/libaom/av1/encoder/x86/ |
D | encodetxb_sse2.c | 497 const int bwl = get_txb_bwl(tx_size); in av1_get_nz_map_contexts_sse2() local 499 if (last_idx <= (height << bwl) / 8) in av1_get_nz_map_contexts_sse2() 501 else if (last_idx <= (height << bwl) / 4) in av1_get_nz_map_contexts_sse2()
|
/external/libvpx/libvpx/vpx_dsp/ |
D | avg.c | 370 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl) { in vpx_vector_var_c() argument 372 int width = 4 << bwl; in vpx_vector_var_c() 382 var = sse - ((mean * mean) >> (bwl + 2)); in vpx_vector_var_c()
|
/external/libvpx/libvpx/vp9/decoder/ |
D | vp9_decodeframe.c | 775 static void set_plane_n4(MACROBLOCKD *const xd, int bw, int bh, int bwl, in set_plane_n4() argument 781 xd->plane[i].n4_wl = bwl - xd->plane[i].subsampling_x; in set_plane_n4() 788 int bwl, int bhl) { in set_offsets_recon() argument 793 set_plane_n4(xd, bw, bh, bwl, bhl); in set_offsets_recon() 807 int bh, int x_mis, int y_mis, int bwl, int bhl) { in set_offsets() argument 822 set_plane_n4(xd, bw, bh, bwl, bhl); in set_offsets() 895 int mi_col, BLOCK_SIZE bsize, int bwl, int bhl) { in decode_block() argument 898 const int bw = 1 << (bwl - 1); in decode_block() 906 y_mis, bwl, bhl); in decode_block() 995 int mi_col, BLOCK_SIZE bsize, int bwl, int bhl) { in recon_block() argument [all …]
|
/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/vpx_dsp/x86/ |
D | avg_intrin_sse2.c | 536 int vpx_vector_var_sse2(const int16_t *ref, const int16_t *src, const int bwl) { in vpx_vector_var_sse2() argument 538 int width = 4 << bwl; in vpx_vector_var_sse2() 576 return _mm_cvtsi128_si32(sse) - ((mean * mean) >> (bwl + 2)); in vpx_vector_var_sse2()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_mcomp.c | 2055 static int vector_match(int16_t *ref, int16_t *src, int bwl) { in vector_match() argument 2060 int bw = 4 << bwl; // redundant variable, to be changed in the experiments. in vector_match() 2062 this_sad = vpx_vector_var(&ref[d], src, bwl); in vector_match() 2074 this_sad = vpx_vector_var(&ref[this_pos], src, bwl); in vector_match() 2086 this_sad = vpx_vector_var(&ref[this_pos], src, bwl); in vector_match() 2098 this_sad = vpx_vector_var(&ref[this_pos], src, bwl); in vector_match() 2110 this_sad = vpx_vector_var(&ref[this_pos], src, bwl); in vector_match()
|
D | vp9_encodemb.c | 767 const int bwl = b_width_log2_lookup[plane_bsize]; in vp9_encode_block_intra() local 768 const int diff_stride = 4 * (1 << bwl); in vp9_encode_block_intra() 801 xd, bwl, tx_size, mode, (x->skip_encode || x->fp_src_pred) ? src : dst, in vp9_encode_block_intra()
|
D | vp9_rdopt.c | 2442 int bwl = b_width_log2_lookup[bsize]; in single_motion_search() local 2444 int tlevel = x->pred_mv_sad[ref] >> (bwl + bhl + 4); in single_motion_search()
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/data/transformtest/ |
D | kk-fonipa-t-kk.txt | 28 Булаев bwlɑi̯ɘv
|
/external/libvpx/config/arm64/ |
D | vpx_dsp_rtcd.h | 1756 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl); 1757 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 | 1756 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl); 1757 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 | 1989 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl); 1990 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 | 1996 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl); 1997 int vpx_vector_var_sse2(const int16_t *ref, const int16_t *src, const int bwl);
|
/external/libvpx/config/generic/ |
D | vpx_dsp_rtcd.h | 1512 int vpx_vector_var_c(const int16_t *ref, const int16_t *src, const int bwl);
|
/external/cldr/tools/java/org/unicode/cldr/util/data/ |
D | iso-639-3_Name_Index.tab | 1096 bwl Bwela Bwela
|
D | iso-639-3.tab | 1065 bwl I L Bwela
|