/external/libaom/libaom/aom/src/ |
D | aom_image.c | 30 aom_image_t *img, aom_img_fmt_t fmt, unsigned int d_w, unsigned int d_h, in img_alloc_helper() argument 94 h = align_image_dimension(d_h, ycs, size_align); in img_alloc_helper() 142 if (!aom_img_set_rect(img, 0, 0, d_w, d_h, border)) return img; in img_alloc_helper() 150 unsigned int d_w, unsigned int d_h, in aom_img_alloc() argument 152 return img_alloc_helper(img, fmt, d_w, d_h, align, align, 1, NULL, 0); in aom_img_alloc() 156 unsigned int d_h, unsigned int stride_align, in aom_img_wrap() argument 160 return img_alloc_helper(img, fmt, d_w, d_h, 1, stride_align, 1, img_data, 0); in aom_img_wrap() 164 unsigned int d_w, unsigned int d_h, in aom_img_alloc_with_border() argument 168 return img_alloc_helper(img, fmt, d_w, d_h, align, align, size_align, NULL, in aom_img_alloc_with_border() 178 img->d_h = h; in aom_img_set_rect() [all …]
|
/external/libvpx/libvpx/vpx/src/ |
D | vpx_image.c | 19 unsigned int d_w, unsigned int d_h, in img_alloc_helper() argument 75 h = d_h; in img_alloc_helper() 99 h = (d_h + align) & ~align; in img_alloc_helper() 128 if (!vpx_img_set_rect(img, 0, 0, d_w, d_h)) return img; in img_alloc_helper() 136 unsigned int d_w, unsigned int d_h, in vpx_img_alloc() argument 138 return img_alloc_helper(img, fmt, d_w, d_h, align, align, NULL); in vpx_img_alloc() 142 unsigned int d_h, unsigned int stride_align, in vpx_img_wrap() argument 146 return img_alloc_helper(img, fmt, d_w, d_h, 1, stride_align, img_data); in vpx_img_wrap() 155 img->d_h = h; in vpx_img_set_rect() 206 img->planes[VPX_PLANE_Y] += (signed)(img->d_h - 1) * img->stride[VPX_PLANE_Y]; in vpx_img_flip() [all …]
|
/external/libvpx/libvpx/ |
D | tools_common.c | 214 return (img->d_h + 1) >> img->y_chroma_shift; in vpx_img_plane_height() 216 return img->d_h; in vpx_img_plane_height() 276 if (dst->d_w != src->d_w || dst->d_h != src->d_h || in highbd_img_upshift() 291 int h = src->d_h; in highbd_img_upshift() 312 if (dst->d_w != src->d_w || dst->d_h != src->d_h || in lowbd_img_upshift() 327 int h = src->d_h; in lowbd_img_upshift() 355 dst->d_h != src->d_h || dst->x_chroma_shift != src->x_chroma_shift || in vpx_img_truncate_16_to_8() 368 int h = src->d_h; in vpx_img_truncate_16_to_8() 388 if (dst->d_w != src->d_w || dst->d_h != src->d_h || in highbd_img_downshift() 403 int h = src->d_h; in highbd_img_downshift() [all …]
|
D | vpxdec.c | 161 src->d_w, src->d_h, (uint16_t *)dst->planes[VPX_PLANE_Y], in libyuv_scale() 164 dst->stride[VPX_PLANE_V] / 2, dst->d_w, dst->d_h, mode); in libyuv_scale() 172 src->d_h, dst->planes[VPX_PLANE_Y], dst->stride[VPX_PLANE_Y], in libyuv_scale() 175 dst->d_h, mode); in libyuv_scale() 424 unsigned int d_w, unsigned int d_h, in generate_filename() argument 439 case 'h': snprintf(q, q_len - 1, "%d", d_h); break; in generate_filename() 512 return img->d_w != shifted->d_w || img->d_h != shifted->d_h || in img_shifted_realloc_required() 924 render_height = img->d_h; in main_loop() 935 if (img->d_w != scaled_img->d_w || img->d_h != scaled_img->d_h) { in main_loop() 967 vpx_img_alloc(NULL, shifted_fmt, img->d_w, img->d_h, 16); in main_loop() [all …]
|
D | vpxenc.c | 628 (img1->d_h + img1->y_chroma_shift) >> img1->y_chroma_shift; in find_mismatch_high() 636 for (i = 0, match = 1; match && i < img1->d_h; i += bsize) { in find_mismatch_high() 639 const int si = mmin(i + bsize, img1->d_h) - i; in find_mismatch_high() 720 (img1->d_h + img1->y_chroma_shift) >> img1->y_chroma_shift; in find_mismatch() 724 for (i = 0, match = 1; match && i < img1->d_h; i += bsize) { in find_mismatch() 727 const int si = mmin(i + bsize, img1->d_h) - i; in find_mismatch() 806 (img1->d_h + img1->y_chroma_shift) >> img1->y_chroma_shift; in compare_img() 812 match &= (img1->d_h == img2->d_h); in compare_img() 820 for (i = 0; i < img1->d_h; ++i) in compare_img() 1614 (img->d_w != cfg->g_w || img->d_h != cfg->g_h)) { in encode_frame() [all …]
|
/external/libaom/libaom/common/ |
D | tools_common.c | 249 if (dst->d_w != src->d_w || dst->d_h != src->d_h || in highbd_img_upshift() 263 int h = src->d_h; in highbd_img_upshift() 284 if (dst->d_w != src->d_w || dst->d_h != src->d_h || in lowbd_img_upshift() 299 int h = src->d_h; in lowbd_img_upshift() 328 dst->d_h != src->d_h || dst->x_chroma_shift != src->x_chroma_shift || in aom_img_truncate_16_to_8() 340 int h = src->d_h; in aom_img_truncate_16_to_8() 360 if (dst->d_w != src->d_w || dst->d_h != src->d_h || in highbd_img_downshift() 374 int h = src->d_h; in highbd_img_downshift() 393 if (dst->d_w != src->d_w || dst->d_h != src->d_h || in lowbd_img_downshift() 407 int h = src->d_h; in lowbd_img_downshift() [all …]
|
/external/libaom/libaom/examples/ |
D | encoder_util.c | 38 is_y_plane ? img1->d_h in find_mismatch_plane() 39 : (img1->d_h + img1->y_chroma_shift) >> img1->y_chroma_shift; in find_mismatch_plane() 40 assert(img1->d_w == img2->d_w && img1->d_h == img2->d_h); in find_mismatch_plane() 113 (img1->d_h + img1->y_chroma_shift) >> img1->y_chroma_shift; in aom_compare_img() 118 match &= (img1->d_h == img2->d_h); in aom_compare_img() 125 uint32_t height = plane ? c_h : img1->d_h; in aom_compare_img()
|
D | decode_to_md5.c | 53 const int h = plane ? (img->d_h + 1) >> 1 : img->d_h; in get_image_md5() 119 fprintf(outfile, " img-%dx%d-%04d.i420\n", img->d_w, img->d_h, in main()
|
/external/libvpx/libvpx/test/ |
D | encode_test_driver.cc | 30 cfg_.g_h = img->d_h; in InitEncoder() 78 if (cfg_.g_w != img->d_w || cfg_.g_h != img->d_h) { in EncodeFrameInternal() 80 cfg_.g_h = img->d_h; in EncodeFrameInternal() 130 (img1->d_w == img2->d_w) && (img1->d_h == img2->d_h); in compare_img() 135 const unsigned int height_y = img1->d_h; in compare_img() 144 const unsigned int height_uv = (img1->d_h + 1) >> 1; in compare_img()
|
D | util.h | 26 (img1->d_h == img2->d_h)); in compute_psnr() 29 const unsigned int height_y = img1->d_h; in compute_psnr()
|
D | md5_helper.h | 32 plane ? (img->d_h + img->y_chroma_shift) >> img->y_chroma_shift in Add() 33 : img->d_h; in Add()
|
D | y4m_test.cc | 64 (plane ? (img->d_h + img->y_chroma_shift) >> img->y_chroma_shift in write_image_file() 65 : img->d_h); in write_image_file() 97 ASSERT_EQ(img()->d_h, kHeight); in HeaderChecks()
|
D | active_map_refresh_test.cc | 25 int r_top = std::min(r + 16, static_cast<int>(current.d_h)); in CheckMb() 86 const int height = static_cast<int>(current->d_h); in PreEncodeFrameHook()
|
/external/libaom/libaom/aom/ |
D | aom_image.h | 157 unsigned int d_h; /**< Displayed image height */ member 221 unsigned int d_w, unsigned int d_h, 244 unsigned int d_h, unsigned int align, 269 unsigned int d_w, unsigned int d_h,
|
/external/libaom/libaom/test/ |
D | util.h | 27 (img1->d_h == img2->d_h)); in compute_psnr() 30 const unsigned int height_y = img1->d_h; in compute_psnr()
|
D | encode_test_driver.cc | 33 cfg_.g_h = img->d_h; in InitEncoder() 64 if (cfg_.g_w != img->d_w || cfg_.g_h != img->d_h) { in EncodeFrameInternal() 66 cfg_.g_h = img->d_h; in EncodeFrameInternal() 137 img1->d_h != img2->d_h || img1->monochrome != img2->monochrome) { in compare_img()
|
D | md5_helper.h | 33 plane ? (img->d_h + img->y_chroma_shift) >> img->y_chroma_shift in Add() 34 : img->d_h; in Add()
|
/external/libvpx/libvpx/vpx/ |
D | vpx_image.h | 83 unsigned int d_h; /**< Displayed image height */ member 144 unsigned int d_w, unsigned int d_h, 167 unsigned int d_h, unsigned int stride_align,
|
/external/libvpx/libvpx/examples/ |
D | decode_to_md5.c | 54 const int h = plane ? (img->d_h + 1) >> 1 : img->d_h; in get_image_md5() 120 fprintf(outfile, " img-%dx%d-%04d.i420\n", img->d_w, img->d_h, in main()
|
D | vp9cx_set_ref.c | 76 (img1->d_h + img1->y_chroma_shift) >> img1->y_chroma_shift; in compare_img() 82 match &= (img1->d_h == img2->d_h); in compare_img() 84 for (i = 0; i < img1->d_h; ++i) in compare_img() 112 (img1->d_h + img1->y_chroma_shift) >> img1->y_chroma_shift; in find_mismatch() 116 for (i = 0, match = 1; match && i < img1->d_h; i += bsize) { in find_mismatch() 119 const int si = mmin(i + bsize, img1->d_h) - i; in find_mismatch()
|
/external/libaom/libaom/apps/ |
D | aomdec.c | 129 src->d_w, src->d_h, (uint16_t *)dst->planes[AOM_PLANE_Y], in libyuv_scale() 132 dst->stride[AOM_PLANE_V] / 2, dst->d_w, dst->d_h, mode); in libyuv_scale() 139 src->d_h, dst->planes[AOM_PLANE_Y], dst->stride[AOM_PLANE_Y], in libyuv_scale() 142 dst->d_h, mode); in libyuv_scale() 346 unsigned int d_w, unsigned int d_h, in generate_filename() argument 361 case 'h': snprintf(q, q_len - 1, "%d", d_h); break; in generate_filename() 824 render_height = img->d_h; in main_loop() 837 if (img->d_w != scaled_img->d_w || img->d_h != scaled_img->d_h) { in main_loop() 864 aom_input_ctx.height = img->d_h; in main_loop() 928 img->d_h, frame_in); in main_loop()
|
/external/libvpx/libvpx/vp9/ |
D | vp9_iface_common.h | 45 img->d_h = yv12->y_crop_height; in yuvconfig2image() 88 yv12->y_crop_height = img->d_h; in image2yuvconfig() 92 yv12->y_height = img->d_h; in image2yuvconfig()
|
/external/tensorflow/tensorflow/contrib/rnn/kernels/ |
D | gru_ops.h | 136 typename TTypes<T>::ConstMatrix c, typename TTypes<T>::ConstMatrix d_h, in operator() 146 ((d_h * (u.constant(T(1)) - u)) * (c.constant(T(1)) - c * c)); in operator() 149 d_u_bar.device(d) = d_h * (h_prev - c) * u * (u.constant(T(1)) - u); in operator() 182 (d_hr * r) + (d_h * u); in operator()
|
/external/clang/test/SemaCUDA/ |
D | function-overload.cu | 208 struct d_h { struct 209 ~d_h() {} // expected-note {{previous declaration is here}} in ~d_h() argument 210 __host__ ~d_h() {} // expected-error {{destructor cannot be redeclared}} in ~d_h() argument
|
/external/libaom/libaom/av1/ |
D | av1_iface_common.h | 47 img->d_h = yv12->y_crop_height; in yuvconfig2image() 85 yv12->y_crop_height = img->d_h; in image2yuvconfig()
|