HomeSort by relevance Sort by last modified time
    Searched refs:d_h (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/libvpx/libvpx/test/
util.h 26 (img1->d_h == img2->d_h));
29 const unsigned int height_y = img1->d_h;
md5_helper.h 32 plane ? (img->d_h + img->y_chroma_shift) >> img->y_chroma_shift
33 : img->d_h;
encode_test_driver.cc 30 cfg_.g_h = img->d_h;
78 if (cfg_.g_w != img->d_w || cfg_.g_h != img->d_h) {
80 cfg_.g_h = img->d_h;
130 (img1->d_w == img2->d_w) && (img1->d_h == img2->d_h);
135 const unsigned int height_y = img1->d_h;
144 const unsigned int height_uv = (img1->d_h + 1) >> 1;
active_map_refresh_test.cc 25 int r_top = std::min(r + 16, static_cast<int>(current.d_h));
86 const int height = static_cast<int>(current->d_h);
y4m_test.cc 64 (plane ? (img->d_h + img->y_chroma_shift) >> img->y_chroma_shift
65 : img->d_h);
97 ASSERT_EQ(img()->d_h, kHeight);
decode_svc_test.cc 40 ASSERT_EQ(img.d_h, height_);
  /external/libaom/libaom/aom/src/
aom_image.c 30 aom_image_t *img, aom_img_fmt_t fmt, unsigned int d_w, unsigned int d_h,
94 h = align_image_dimension(d_h, ycs, size_align);
142 if (!aom_img_set_rect(img, 0, 0, d_w, d_h, border)) return img;
150 unsigned int d_w, unsigned int d_h,
152 return img_alloc_helper(img, fmt, d_w, d_h, align, align, 1, NULL, 0);
156 unsigned int d_h, unsigned int stride_align,
160 return img_alloc_helper(img, fmt, d_w, d_h, 1, stride_align, 1, img_data, 0);
164 unsigned int d_w, unsigned int d_h,
168 return img_alloc_helper(img, fmt, d_w, d_h, align, align, size_align, NULL,
178 img->d_h = h
    [all...]
  /external/libvpx/libvpx/vpx/src/
vpx_image.c 19 unsigned int d_w, unsigned int d_h,
75 h = d_h;
99 h = (d_h + align) & ~align;
128 if (!vpx_img_set_rect(img, 0, 0, d_w, d_h)) return img;
136 unsigned int d_w, unsigned int d_h,
138 return img_alloc_helper(img, fmt, d_w, d_h, align, align, NULL);
142 unsigned int d_h, unsigned int stride_align,
146 return img_alloc_helper(img, fmt, d_w, d_h, 1, stride_align, img_data);
155 img->d_h = h;
206 img->planes[VPX_PLANE_Y] += (signed)(img->d_h - 1) * img->stride[VPX_PLANE_Y]
    [all...]
  /external/libaom/libaom/test/
util.h 27 (img1->d_h == img2->d_h));
30 const unsigned int height_y = img1->d_h;
md5_helper.h 33 plane ? (img->d_h + img->y_chroma_shift) >> img->y_chroma_shift
34 : img->d_h;
encode_test_driver.cc 33 cfg_.g_h = img->d_h;
64 if (cfg_.g_w != img->d_w || cfg_.g_h != img->d_h) {
66 cfg_.g_h = img->d_h;
137 img1->d_h != img2->d_h || img1->monochrome != img2->monochrome) {
  /external/libvpx/libvpx/vpx/
vpx_image.h 83 unsigned int d_h; /**< Displayed image height */ member in struct:vpx_image
135 * \param[in] d_h Height of the image
144 unsigned int d_w, unsigned int d_h,
158 * \param[in] d_h Height of the image
167 unsigned int d_h, unsigned int stride_align,
  /external/libvpx/libvpx/
tools_common.c 214 return (img->d_h + 1) >> img->y_chroma_shift;
216 return img->d_h;
276 if (dst->d_w != src->d_w || dst->d_h != src->d_h ||
291 int h = src->d_h;
312 if (dst->d_w != src->d_w || dst->d_h != src->d_h ||
327 int h = src->d_h;
355 dst->d_h != src->d_h || dst->x_chroma_shift != src->x_chroma_shift |
    [all...]
vpxdec.c 161 src->d_w, src->d_h, (uint16_t *)dst->planes[VPX_PLANE_Y],
164 dst->stride[VPX_PLANE_V] / 2, dst->d_w, dst->d_h, mode);
172 src->d_h, dst->planes[VPX_PLANE_Y], dst->stride[VPX_PLANE_Y],
175 dst->d_h, mode);
424 unsigned int d_w, unsigned int d_h,
439 case 'h': snprintf(q, q_len - 1, "%d", d_h); break;
512 return img->d_w != shifted->d_w || img->d_h != shifted->d_h ||
924 render_height = img->d_h;
935 if (img->d_w != scaled_img->d_w || img->d_h != scaled_img->d_h)
    [all...]
  /external/libaom/libaom/aom/
aom_image.h 157 unsigned int d_h; /**< Displayed image height */ member in struct:aom_image
212 * \param[in] d_h Height of the image
221 unsigned int d_w, unsigned int d_h,
235 * \param[in] d_h Height of the image
244 unsigned int d_h, unsigned int align,
258 * \param[in] d_h Height of the image
269 unsigned int d_w, unsigned int d_h,
  /external/libaom/libaom/examples/
encoder_util.c 38 is_y_plane ? img1->d_h
39 : (img1->d_h + img1->y_chroma_shift) >> img1->y_chroma_shift;
40 assert(img1->d_w == img2->d_w && img1->d_h == img2->d_h);
113 (img1->d_h + img1->y_chroma_shift) >> img1->y_chroma_shift;
118 match &= (img1->d_h == img2->d_h);
125 uint32_t height = plane ? c_h : img1->d_h;
decode_to_md5.c 53 const int h = plane ? (img->d_h + 1) >> 1 : img->d_h;
119 fprintf(outfile, " img-%dx%d-%04d.i420\n", img->d_w, img->d_h,
scalable_decoder.c 160 aom_img_alloc(NULL, AOM_IMG_FMT_I420, img->d_w, img->d_h, 16);
  /external/libaom/libaom/common/
tools_common.c 249 if (dst->d_w != src->d_w || dst->d_h != src->d_h ||
263 int h = src->d_h;
284 if (dst->d_w != src->d_w || dst->d_h != src->d_h ||
299 int h = src->d_h;
328 dst->d_h != src->d_h || dst->x_chroma_shift != src->x_chroma_shift ||
340 int h = src->d_h;
360 if (dst->d_w != src->d_w || dst->d_h != src->d_h |
    [all...]
  /external/libvpx/libvpx/examples/
decode_to_md5.c 54 const int h = plane ? (img->d_h + 1) >> 1 : img->d_h;
120 fprintf(outfile, " img-%dx%d-%04d.i420\n", img->d_w, img->d_h,
vp9cx_set_ref.c 76 (img1->d_h + img1->y_chroma_shift) >> img1->y_chroma_shift;
82 match &= (img1->d_h == img2->d_h);
84 for (i = 0; i < img1->d_h; ++i)
112 (img1->d_h + img1->y_chroma_shift) >> img1->y_chroma_shift;
116 for (i = 0, match = 1; match && i < img1->d_h; i += bsize) {
119 const int si = mmin(i + bsize, img1->d_h) - i;
  /external/tensorflow/tensorflow/contrib/rnn/kernels/
gru_ops.h 136 typename TTypes<T>::ConstMatrix c, typename TTypes<T>::ConstMatrix d_h,
144 // d_c_bar = d_h*(1-u)*(1-(c*c))
146 ((d_h * (u.constant(T(1)) - u)) * (c.constant(T(1)) - c * c));
148 // d_u_bar = d_h*(h-c)*(u*(1-u))
149 d_u_bar.device(d) = d_h * (h_prev - c) * u * (u.constant(T(1)) - u);
179 // d_h_prev = d_h_comp1 + d_hr*r + d_h*u
182 (d_hr * r) + (d_h * u);
  /external/libvpx/libvpx/vp9/
vp9_iface_common.h 45 img->d_h = yv12->y_crop_height;
88 yv12->y_crop_height = img->d_h;
92 yv12->y_height = img->d_h;
  /external/libaom/libaom/apps/
aomdec.c 129 src->d_w, src->d_h, (uint16_t *)dst->planes[AOM_PLANE_Y],
132 dst->stride[AOM_PLANE_V] / 2, dst->d_w, dst->d_h, mode);
139 src->d_h, dst->planes[AOM_PLANE_Y], dst->stride[AOM_PLANE_Y],
142 dst->d_h, mode);
346 unsigned int d_w, unsigned int d_h,
361 case 'h': snprintf(q, q_len - 1, "%d", d_h); break;
824 render_height = img->d_h;
837 if (img->d_w != scaled_img->d_w || img->d_h != scaled_img->d_h) {
864 aom_input_ctx.height = img->d_h;
    [all...]
  /external/libaom/libaom/av1/
av1_iface_common.h 47 img->d_h = yv12->y_crop_height;
85 yv12->y_crop_height = img->d_h;

Completed in 1912 milliseconds

1 2 3