/external/libaom/libaom/test/ |
D | wiener_test.cc | 34 static void compute_stats_win_opt_c(int wiener_win, const uint8_t *dgd, in compute_stats_win_opt_c() argument 43 uint8_t avg = find_average(dgd, h_start, h_end, v_start, v_end, dgd_stride); in compute_stats_win_opt_c() 52 const uint8_t *dgd_win = dgd - wiener_halfwin * dgd_stride - wiener_halfwin; in compute_stats_win_opt_c() 96 void compute_stats_opt_c(int wiener_win, const uint8_t *dgd, const uint8_t *src, in compute_stats_opt_c() argument 101 compute_stats_win_opt_c(wiener_win, dgd, src, h_start, h_end, v_start, in compute_stats_opt_c() 104 av1_compute_stats_c(wiener_win, dgd, src, h_start, h_end, v_start, v_end, in compute_stats_opt_c() 110 typedef void (*compute_stats_Func)(int wiener_win, const uint8_t *dgd, 165 uint8_t *dgd = dgd_buf + wiener_halfwin * MAX_DATA_BLOCK + wiener_halfwin; in RunWienerTest() local 171 av1_compute_stats_c(wiener_win, dgd, src, h_start, h_end, v_start, v_end, in RunWienerTest() 178 target_func_(wiener_win, dgd, src, h_start, h_end, v_start, v_end, in RunWienerTest() [all …]
|
D | pickrst_test.cc | 103 uint8_t *dgd = dgd_; in RunPixelProjErrorTest() local 109 err_ref = av1_lowbd_pixel_proj_error_c(src, h_end, v_end, src_stride, dgd, in RunPixelProjErrorTest() 118 target_func_(src, h_end, v_end, src_stride, dgd, dgd_stride, flt0_, in RunPixelProjErrorTest() 157 uint8_t *dgd = dgd_; in RunPixelProjErrorTest_ExtremeValues() local 161 src, h_end - h_start, v_end - v_start, src_stride, dgd, dgd_stride, in RunPixelProjErrorTest_ExtremeValues() 165 dgd, dgd_stride, flt0_, flt0_stride, flt1_, in RunPixelProjErrorTest_ExtremeValues() 441 uint8_t *dgd = dgd_; in RunGetProjSubspaceTest() local 447 av1_calc_proj_params_c(src, v_end, h_end, src_stride, dgd, dgd_stride, in RunGetProjSubspaceTest() 455 target_func_(src, v_end, h_end, src_stride, dgd, dgd_stride, flt0_, in RunGetProjSubspaceTest() 499 uint8_t *dgd = dgd_; in RunGetProjSubspaceTest_ExtremeValues() local [all …]
|
/external/libaom/libaom/av1/encoder/ |
D | cnn.h | 172 void av1_cnn_predict_img_multi_out(uint8_t **dgd, int width, int height, 176 void av1_cnn_predict_img_multi_out_highbd(uint16_t **dgd, int width, int height, 184 void av1_cnn_predict_img(uint8_t **dgd, int width, int height, int stride, 188 void av1_cnn_predict_img_highbd(uint16_t **dgd, int width, int height,
|
D | cnn.c | 1001 void av1_cnn_predict_img_multi_out(uint8_t **dgd, int width, int height, in av1_cnn_predict_img_multi_out() argument 1023 input[i * in_stride + j] = (float)dgd[c][i * stride + j] / max_val; in av1_cnn_predict_img_multi_out() 1044 input[i * in_stride + j] = (float)dgd[c][i * stride + j] / max_val; in av1_cnn_predict_img_multi_out() 1055 void av1_cnn_predict_img_multi_out_highbd(uint16_t **dgd, int width, int height, in av1_cnn_predict_img_multi_out_highbd() argument 1079 input[i * in_stride + j] = (float)dgd[c][i * stride + j] / max_val; in av1_cnn_predict_img_multi_out_highbd() 1100 input[i * in_stride + j] = (float)dgd[c][i * stride + j] / max_val; in av1_cnn_predict_img_multi_out_highbd() 1112 void av1_cnn_predict_img(uint8_t **dgd, int width, int height, int stride, in av1_cnn_predict_img() argument 1124 av1_cnn_predict_img_multi_out(dgd, width, height, stride, cnn_config, in av1_cnn_predict_img() 1130 void av1_cnn_predict_img_highbd(uint16_t **dgd, int width, int height, in av1_cnn_predict_img_highbd() argument 1142 av1_cnn_predict_img_multi_out_highbd(dgd, width, height, stride, cnn_config, in av1_cnn_predict_img_highbd()
|
D | pickrst.c | 180 const YV12_BUFFER_CONFIG *dgd = &cm->cur_frame->buf; in init_rsc() local 186 rsc->dgd_buffer = dgd->buffers[plane]; in init_rsc() 187 rsc->dgd_stride = dgd->strides[is_uv]; in init_rsc() 189 assert(src->crop_widths[is_uv] == dgd->crop_widths[is_uv]); in init_rsc() 190 assert(src->crop_heights[is_uv] == dgd->crop_heights[is_uv]); in init_rsc() 935 void av1_compute_stats_c(int wiener_win, const uint8_t *dgd, const uint8_t *src, in av1_compute_stats_c() argument 943 uint8_t avg = find_average(dgd, h_start, h_end, v_start, v_end, dgd_stride); in av1_compute_stats_c() 953 Y[idx] = (int16_t)dgd[(i + l) * dgd_stride + (j + k)] - (int16_t)avg; in av1_compute_stats_c() 987 const uint16_t *dgd = CONVERT_TO_SHORTPTR(dgd8); in av1_compute_stats_highbd_c() local 989 find_average_highbd(dgd, h_start, h_end, v_start, v_end, dgd_stride); in av1_compute_stats_highbd_c() [all …]
|
/external/libaom/libaom/av1/encoder/x86/ |
D | pickrst_sse4.c | 35 const uint8_t *dgd, const uint8_t *src, int h_start, int h_end, in acc_stat_win7_one_line_sse4_1() argument 42 const uint8_t *dgd_ij = dgd + j; in acc_stat_win7_one_line_sse4_1() 70 const uint8_t *dgd, const uint8_t *src, int h_start, int h_end, int v_start, in compute_stats_win7_opt_sse4_1() argument 78 find_average(dgd, h_start, h_end, v_start, v_end, dgd_stride); in compute_stats_win7_opt_sse4_1() 86 const uint8_t *dgd_win = dgd - wiener_halfwin * dgd_stride - wiener_halfwin; in compute_stats_win7_opt_sse4_1() 129 static INLINE void acc_stat_highbd_sse41(int64_t *dst, const uint16_t *dgd, in acc_stat_highbd_sse41() argument 133 const __m128i s0l = xx_loadu_128(dgd); in acc_stat_highbd_sse41() 134 const __m128i s0h = xx_loadu_128(dgd + 4); in acc_stat_highbd_sse41() 170 const uint16_t *dgd, const uint16_t *src, int h_start, int h_end, in acc_stat_highbd_win7_one_line_sse4_1() argument 180 const uint16_t *dgd_ij = dgd + j; in acc_stat_highbd_win7_one_line_sse4_1() [all …]
|
D | pickrst_avx2.c | 31 const uint8_t *dgd, const uint8_t *src, int h_start, int h_end, in acc_stat_win7_one_line_avx2() argument 41 const uint8_t *dgd_ij = dgd + j; in acc_stat_win7_one_line_avx2() 66 const uint8_t *dgd, const uint8_t *src, int h_start, int h_end, int v_start, in compute_stats_win7_opt_avx2() argument 73 uint8_t avg = find_average(dgd, h_start, h_end, v_start, v_end, dgd_stride); in compute_stats_win7_opt_avx2() 83 const uint8_t *dgd_win = dgd - wiener_halfwin * dgd_stride - wiener_halfwin; in compute_stats_win7_opt_avx2() 126 static INLINE void acc_stat_highbd_avx2(int64_t *dst, const uint16_t *dgd, in acc_stat_highbd_avx2() argument 131 _mm256_castsi128_si256(_mm_loadu_si128((__m128i *)dgd)), in acc_stat_highbd_avx2() 132 _mm_loadu_si128((__m128i *)(dgd + 4)), 1); in acc_stat_highbd_avx2() 162 const uint16_t *dgd, const uint16_t *src, int h_start, int h_end, in acc_stat_highbd_win7_one_line_avx2() argument 172 const uint16_t *dgd_ij = dgd + j; in acc_stat_highbd_win7_one_line_avx2() [all …]
|
/external/libaom/libaom/av1/common/ |
D | restoration.c | 673 static void calculate_intermediate_result(int32_t *dgd, int width, int height, in calculate_intermediate_result() argument 693 boxsum(dgd - dgd_stride * SGRPROJ_BORDER_VERT - SGRPROJ_BORDER_HORZ, in calculate_intermediate_result() 695 boxsum(dgd - dgd_stride * SGRPROJ_BORDER_VERT - SGRPROJ_BORDER_HORZ, in calculate_intermediate_result() 767 int32_t *dgd, int width, int height, int dgd_stride, int32_t *dst, in selfguided_restoration_fast_internal() argument 782 calculate_intermediate_result(dgd, width, height, dgd_stride, bit_depth, in selfguided_restoration_fast_internal() 805 const int32_t v = a * dgd[l] + b; in selfguided_restoration_fast_internal() 817 const int32_t v = a * dgd[l] + b; in selfguided_restoration_fast_internal() 825 static void selfguided_restoration_internal(int32_t *dgd, int width, int height, in selfguided_restoration_internal() argument 841 calculate_intermediate_result(dgd, width, height, dgd_stride, bit_depth, in selfguided_restoration_internal() 865 const int32_t v = a * dgd[l] + b; in selfguided_restoration_internal()
|
/external/eigen/lapack/ |
D | CMakeLists.txt | 250 add_lapack_test(dgd.out dgd.in xeigtstd)
|
/external/ImageMagick/PerlMagick/t/ |
D | input.mat | 150 …linpjknnnligfhhiga`cdfggimllmjjklmmnqqmosropnmopppppeeddb``bccbdd``bba^_`^`dgd^ZWRU~��������������…
|
/external/cldr/tools/java/org/unicode/cldr/util/data/ |
D | iso-639-3_Name_Index.tab | 1605 dgd Dagaari Dioula Dagaari Dioula
|
D | iso-639-3.tab | 1544 dgd I L Dagaari Dioula
|
D | language-subtag-registry | 9297 Subtag: dgd
|