/third_party/ffmpeg/libavfilter/ |
D | bbox.c | 32 int end_y; \ 63 for (end_y = h - 1; end_y >= start_y; end_y--) { \ 74 bbox->y2 = end_y; \
|
D | motion_estimation.c | 382 int end_x, end_y; in ff_me_search_umh() local 407 end_y = FFMIN(mv[1] + 2, y_max); in ff_me_search_umh() 408 for (y = FFMAX(y_min, mv[1] - 2); y <= end_y; y++) in ff_me_search_umh()
|
D | vf_minterpolate.c | 995 int end_y = start_y + (1 << (n - 1)); in var_size_bmc() local 997 for (y = start_y; y < end_y; y++) { in var_size_bmc()
|
/third_party/ffmpeg/libavcodec/ |
D | videodsp_template.c | 30 int start_y, start_x, end_y, end_x; in FUNC() local 57 end_y = FFMIN(block_h, h-src_y); in FUNC() 59 av_assert2(start_y < end_y && block_h); in FUNC() 73 for (; y < end_y; y++) { in FUNC()
|
D | snowdec.c | 225 …(SnowContext *s, slice_buffer * sb, SubBand *b, IDWTELEM *src, int stride, int start_y, int end_y){ in dequantize_slice_buffered() argument 234 for(y=start_y; y<end_y; y++){ in dequantize_slice_buffered() 248 … * sb, SubBand *b, IDWTELEM *src, int stride, int inverse, int use_median, int start_y, int end_y){ in correlate_slice_buffered() argument 258 for(y=start_y; y<end_y; y++){ in correlate_slice_buffered() 547 int end_y; in decode_frame() local 564 int end_y; in decode_frame() local 569 …end_y = (((block_h * our_mb_end) >> (s->spatial_decomposition_count - level)) + s->spatial_decompo… in decode_frame() 572 … end_y = FFMAX(0, end_y - (block_h >> (1+s->spatial_decomposition_count - level))); in decode_frame() 575 end_y = FFMIN(b->height, end_y); in decode_frame() 577 if (start_y != end_y){ in decode_frame() [all …]
|
D | arbc.c | 57 int end_y = start_y + 4, end_x = start_x + 4; in fill_tile4() local 59 for (int j = start_y; j < end_y; j++) { in fill_tile4() 95 int end_y = start_y + tile_height, end_x = start_x + tile_width; in fill_tileX() local 100 for (int j = start_y; j < end_y; j += step_h) { in fill_tileX()
|
D | vp9recon.c | 228 int end_y = FFMIN(2 * (s->rows - row), h4); in intra_recon() local 235 for (n = 0, y = 0; y < end_y; y += step1d) { in intra_recon() 261 end_y >>= s->ss_v; in intra_recon() 266 for (n = 0, y = 0; y < end_y; y += uvstep1d) { in intra_recon() 606 int end_y = FFMIN(2 * (s->rows - row), h4); in inter_recon() local 612 for (n = 0, y = 0; y < end_y; y += step1d) { in inter_recon() 627 end_y >>= s->ss_v; in inter_recon() 631 for (n = 0, y = 0; y < end_y; y += uvstep1d) { in inter_recon()
|
D | rasc.c | 249 int type, start_x, start_y, end_x, end_y, mov_x, mov_y; in decode_move() local 257 end_y = bytestream2_get_le16(&mc); in decode_move() 263 end_x >= avctx->width || end_y >= avctx->height || in decode_move() 268 if (start_x >= end_x || start_y >= end_y) in decode_move() 272 h = end_y - start_y; in decode_move()
|
D | vp9block.c | 974 int end_y = FFMIN(2 * (s->rows - row), h4); in decode_coeffs() local 1000 MERGE(l, end_y, step, rd); \ in decode_coeffs() 1005 for (n = 0, y = 0; y < end_y; y += step) { \ in decode_coeffs() 1054 SPLAT(l, end_y, step, end_y == h4); \ in decode_coeffs() 1080 for (n = 0, y = 0; y < end_y; y += step) { \ in decode_coeffs() 1102 end_y >>= s->ss_v; in decode_coeffs()
|
D | mpegvideo_enc.c | 1894 int end_y = s->thread_context[i]-> end_mb_y; in ff_mpv_encode_picture() local 1897 uint8_t *end = pkt->data + (size_t)(((int64_t) pkt->size) * end_y / h); in ff_mpv_encode_picture()
|
/third_party/ffmpeg/libavcodec/x86/ |
D | videodsp_init.c | 35 x86_reg start_y, x86_reg end_y, x86_reg bh); 38 x86_reg start_y, x86_reg end_y, x86_reg bh, 160 x86_reg start_y, start_x, end_y, end_x, src_y_add = 0, p; in emulated_edge_mc() local 186 end_y = FFMIN(block_h, h-src_y); in emulated_edge_mc() 189 av_assert2(start_y < end_y && block_h > 0); in emulated_edge_mc() 196 start_y, end_y, block_h); in emulated_edge_mc() 199 start_y, end_y, block_h, w); in emulated_edge_mc()
|
D | videodsp.asm | 53 ; |----| <- end_y 58 start_y, end_y, bh, w 60 cglobal emu_edge_vvar, 1, 6, 1, dst, src, start_y, end_y, bh, w 273 start_y, end_y, val, bh 276 cglobal emu_edge_vfix %+ %%n, 0, 6, 0, val, dst, src, start_y, end_y, bh 288 start_y, end_y, bh 290 cglobal emu_edge_vfix %+ %%n, 1, 5, 1, dst, src, start_y, end_y, bh 300 sub bhq, end_yq ; bh -= end_y 301 sub end_yq, start_yq ; end_y -= start_y 319 dec end_yq ; } while (--end_y)
|
/third_party/astc-encoder/Utils/ |
D | astc_test_autoextract.cpp | 175 int end_y = (worst_y_block + 1) * blockdim_y; in main() local 183 if (end_y > ref_dim_y) in main() 185 end_y = ref_dim_y; in main() 189 int outblk_y = end_y - start_y; in main()
|
D | astc_test_autoextract_hdr.cpp | 175 int end_y = (worst_y_block + 1) * blockdim_y; in main() local 183 if (end_y > ref_dim_y) in main() 185 end_y = ref_dim_y; in main() 189 int outblk_y = end_y - start_y; in main()
|
/third_party/vk-gl-cts/external/openglcts/modules/glesext/geometry_shader/ |
D | esextcGeometryShaderRendering.cpp | 2146 float end_y = 0; in GeometryShaderRenderingLinesCase() local 2157 end_y = 0.0f; in GeometryShaderRenderingLinesCase() 2163 end_y = 1; in GeometryShaderRenderingLinesCase() 2181 …quad_coordinates.push_back(tcu::Vec4(1 - dx_multiplier * dx, end_y - dy_multiplier * dy, 1, w)); /… in GeometryShaderRenderingLinesCase() 2182 …quad_coordinates.push_back(tcu::Vec4(-1 + dx_multiplier * dx, end_y - dy_multiplier * dy, 1, w)); … in GeometryShaderRenderingLinesCase() 3416 int end_y = 0; in verify() local 3430 end_y = start_y; in verify() 3445 end_y = start_y + single_rt_height - 6; /* skip the corners */ in verify() 3460 end_y = start_y; in verify() 3475 end_y = start_y + single_rt_height - 6; /* skip the corners */ in verify() [all …]
|
/third_party/python/Lib/idlelib/idle_test/ |
D | test_sidebar.py | 276 end_x, end_y = self.get_line_screen_position(end_line) 290 map(int, lerp(start_y, end_y, steps=11)), 296 x=end_x, y=end_y)
|
/third_party/astc-encoder/Source/ |
D | astcenc_entry.cpp | 894 int end_y = astc::min(dim_y, start_y + block_y); in compress_image() local 908 for (int ay = start_y; ay < end_y; ay++) in compress_image() 917 ay = end_y; in compress_image()
|
/third_party/ffmpeg/libavfilter/opencl/ |
D | deshake.cl | 385 int end_y = min(loc_i.y + 32, (int)get_image_dim(grayscale).y - 1); 388 for (int j = loc_i.y; j < end_y; ++j) {
|