/third_party/ffmpeg/libavcodec/ |
D | escape130.c | 33 uint8_t *new_y, *old_y; member 139 s->new_y = s->buf1; in escape130_decode_init() 140 s->new_u = s->new_y + avctx->width * avctx->height; in escape130_decode_init() 199 *new_y, *new_cb, *new_cr; in escape130_decode_frame() local 222 new_y = s->new_y; in escape130_decode_frame() 286 new_y[0] = y[0]; in escape130_decode_frame() 287 new_y[1] = y[1]; in escape130_decode_frame() 288 new_y[new_y_stride] = y[2]; in escape130_decode_frame() 289 new_y[new_y_stride + 1] = y[3]; in escape130_decode_frame() 296 new_y += 2; in escape130_decode_frame() [all …]
|
/third_party/ffmpeg/libavfilter/ |
D | vf_lensfun.c | 323 float interpolated, new_x, new_y, d, norm; in distortion_correction_filter_slice() local 344 …new_y = thread_data->distortion_coords[x * 2 * 3 + y * thread_data->width * 2 * 3 + rgb_index * 2 … in distortion_correction_filter_slice() 345 new_y_int = new_y; in distortion_correction_filter_slice() 350 …x + new_y_int * thread_data->linesize_in] * (new_x_int + 1 - new_x) * (new_y_int + 1 - new_y) in distortion_correction_filter_slice() 351 …index + new_y_int * thread_data->linesize_in] * (new_x - new_x_int) * (new_y_int + 1 - new_y) in distortion_correction_filter_slice() 352 …index + (new_y_int + 1) * thread_data->linesize_in] * (new_x_int + 1 - new_x) * (new_y - new_y_int) in distortion_correction_filter_slice() 353 …gb_index + (new_y_int + 1) * thread_data->linesize_in] * (new_x - new_x_int) * (new_y - new_y_int); in distortion_correction_filter_slice() 361 …new_y = thread_data->distortion_coords[x * 2 * 3 + y * thread_data->width * 2 * 3 + rgb_index * 2 … in distortion_correction_filter_slice() 362 new_y_int = new_y; in distortion_correction_filter_slice() 367 … d = square(new_x - (new_x_int + i - 2)) * square(new_y - (new_y_int + j - 2)); in distortion_correction_filter_slice() [all …]
|
/third_party/gstreamer/gstplugins_base/ext/gl/ |
D | gstgltransformation.c | 624 double new_x, new_y; in _screen_coord_to_model_coord() local 635 new_y = (1. - model_coord.y) * h / 2; in _screen_coord_to_model_coord() 637 if (new_x < 0. || new_x > w || new_y < 0. || new_y > h) in _screen_coord_to_model_coord() 642 new_y); in _screen_coord_to_model_coord() 647 *res_y = new_y; in _screen_coord_to_model_coord() 712 gdouble new_x, new_y; in gst_gl_transformation_src_event() local 715 &new_y)) { in gst_gl_transformation_src_event() 721 "pointer_y", G_TYPE_DOUBLE, new_y, NULL); in gst_gl_transformation_src_event()
|
/third_party/gstreamer/gstplugins_good/gst/videofilter/ |
D | gstvideoflip.c | 1225 gdouble new_x, new_y, x, y; in gst_video_flip_src_event() local 1245 new_y = out_info->width - x; in gst_video_flip_src_event() 1249 new_y = x; in gst_video_flip_src_event() 1253 new_y = out_info->width - x; in gst_video_flip_src_event() 1257 new_y = x; in gst_video_flip_src_event() 1261 new_y = out_info->height - y; in gst_video_flip_src_event() 1265 new_y = y; in gst_video_flip_src_event() 1269 new_y = out_info->height - y; in gst_video_flip_src_event() 1273 new_y = y; in gst_video_flip_src_event() 1277 GST_DEBUG_OBJECT (vf, "to %fx%f", new_x, new_y); in gst_video_flip_src_event() [all …]
|
/third_party/gstreamer/gstplugins_bad/sys/va/ |
D | gstvavpp.c | 1793 gdouble new_x = 0, new_y = 0, x = 0, y = 0, w_factor = 1, h_factor = 1; in gst_va_vpp_src_event() local 1817 new_y = GST_VIDEO_INFO_WIDTH (in_info) - 1 - x; in gst_va_vpp_src_event() 1821 new_y = x; in gst_va_vpp_src_event() 1825 new_y = GST_VIDEO_INFO_WIDTH (in_info) - 1 - x; in gst_va_vpp_src_event() 1829 new_y = x; in gst_va_vpp_src_event() 1834 new_y = GST_VIDEO_INFO_HEIGHT (in_info) - 1 - y; in gst_va_vpp_src_event() 1838 new_y = y; in gst_va_vpp_src_event() 1842 new_y = GST_VIDEO_INFO_HEIGHT (in_info) - 1 - y; in gst_va_vpp_src_event() 1846 new_y = y; in gst_va_vpp_src_event() 1853 new_y *= h_factor; in gst_va_vpp_src_event() [all …]
|
/third_party/python/Lib/idlelib/ |
D | autocomplete_w.py | 265 new_y = text.winfo_rooty() + y 269 new_y += cy 272 new_y -= acw_height 273 acw.wm_geometry("+%d+%d" % (new_x, new_y))
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
D | yuv.c | 209 const int new_y = (int)dst[i] + diff_y; in SharpYUVUpdateY_C() local 210 dst[i] = clip_y(new_y); in SharpYUVUpdateY_C()
|
D | yuv_neon.c | 206 const int new_y = (int)(dst[i]) + diff_y; in SharpYUVUpdateY_NEON() local 207 dst[i] = clip_y_NEON(new_y); in SharpYUVUpdateY_NEON()
|
D | yuv_sse2.c | 784 const int new_y = (int)dst[i] + diff_y; in SharpYUVUpdateY_SSE2() local 785 dst[i] = clip_y(new_y); in SharpYUVUpdateY_SSE2()
|
/third_party/flutter/skia/third_party/externals/libwebp/src/dsp/ |
D | yuv.c | 209 const int new_y = (int)dst[i] + diff_y; in SharpYUVUpdateY_C() local 210 dst[i] = clip_y(new_y); in SharpYUVUpdateY_C()
|
D | yuv_neon.c | 206 const int new_y = (int)(dst[i]) + diff_y; in SharpYUVUpdateY_NEON() local 207 dst[i] = clip_y_NEON(new_y); in SharpYUVUpdateY_NEON()
|
D | yuv_sse2.c | 784 const int new_y = (int)dst[i] + diff_y; in SharpYUVUpdateY_SSE2() local 785 dst[i] = clip_y(new_y); in SharpYUVUpdateY_SSE2()
|
/third_party/skia/third_party/externals/tint/src/ |
D | clone_context_test.cc | 780 Symbol new_y = cloned.Symbols().New(); in TEST_F() local 787 EXPECT_EQ(cloned.Symbols().NameFor(new_y), "tint_symbol_2"); in TEST_F() 808 Symbol new_y = cloned.Symbols().New("b"); in TEST_F() local 815 EXPECT_EQ(cloned.Symbols().NameFor(new_y), "b"); in TEST_F() 836 Symbol new_y = cloned.Symbols().New("b"); in TEST_F() local 843 EXPECT_EQ(cloned.Symbols().NameFor(new_y), "b_1"); in TEST_F()
|
/third_party/mesa3d/src/gallium/drivers/softpipe/ |
D | sp_tex_sample.c | 1039 int new_x, new_y, max_x; in get_texel_cube_seamless() local 1045 new_y = y; in get_texel_cube_seamless() 1063 new_y = get_next_ycoord(face, 0, max_x -1, x, y); in get_texel_cube_seamless() 1070 new_y = get_next_ycoord(face, 1, max_x -1, x, y); in get_texel_cube_seamless() 1074 new_y = get_next_ycoord(face, 2, max_x -1, x, y); in get_texel_cube_seamless() 1078 new_y = get_next_ycoord(face, 3, max_x -1, x, y); in get_texel_cube_seamless() 1082 return get_texel_3d_no_border(sp_sview, addr, new_x, new_y, layer + face); in get_texel_cube_seamless()
|
/third_party/python/Doc/library/ |
D | curses.rst | 1112 .. method:: window.move(new_y, new_x) 1114 Move cursor to ``(new_y, new_x)``. 1124 .. method:: window.mvwin(new_y, new_x) 1126 Move the window so its upper-left corner is at ``(new_y, new_x)``.
|