/third_party/ffmpeg/libavfilter/ |
D | motion_estimation.c | 42 if (x >= x_min && x <= x_max && y >= y_min && y <= y_max)\ 46 int width, int height, int x_min, int x_max, int y_min, int y_max) in ff_me_init_context() argument 54 me_ctx->x_max = x_max; in ff_me_init_context() 82 int x_max = FFMIN(x_mb + me_ctx->search_param, me_ctx->x_max); in ff_me_search_esa() local 90 for (x = x_min; x <= x_max; x++) in ff_me_search_esa() 101 int x_max = FFMIN(x_mb + me_ctx->search_param, me_ctx->x_max); in ff_me_search_tss() local 132 int x_max = FFMIN(x_mb + me_ctx->search_param, me_ctx->x_max); in ff_me_search_tdls() local 164 int x_max = FFMIN(x_mb + me_ctx->search_param, me_ctx->x_max); in ff_me_search_ntss() local 217 int x_max = FFMIN(x_mb + me_ctx->search_param, me_ctx->x_max); in ff_me_search_fss() local 249 int x_max = FFMIN(x_mb + me_ctx->search_param, me_ctx->x_max); in ff_me_search_ds() local [all …]
|
D | vf_hysteresis.c | 183 int x_min, x_max, y_min, y_max, yy, xx; in hysteresis8() local 188 x_max = posx < w - 1 ? posx + 1 : posx; in hysteresis8() 193 for (xx = x_min; xx <= x_max; xx++) { in hysteresis8() 232 int x_min, x_max, y_min, y_max, yy, xx; in hysteresis16() local 237 x_max = posx < w - 1 ? posx + 1 : posx; in hysteresis16() 242 for (xx = x_min; xx <= x_max; xx++) { in hysteresis16()
|
D | motion_estimation.h | 52 int x_max; member 65 int width, int height, int x_min, int x_max, int y_min, int y_max);
|
D | vf_minterpolate.c | 269 x = av_clip(x, me_ctx->x_min, me_ctx->x_max); in get_sbad() 271 …v_clip(x_mv - x, -FFMIN(x - me_ctx->x_min, me_ctx->x_max - x), FFMIN(x - me_ctx->x_min, me_ctx->x_… in get_sbad() 290 int x_max = me_ctx->x_max - me_ctx->mb_size / 2; in get_sbad_ob() local 298 x = av_clip(x, x_min, x_max); in get_sbad_ob() 300 mv_x = av_clip(x_mv - x, -FFMIN(x - x_min, x_max - x), FFMIN(x - x_min, x_max - x)); in get_sbad_ob() 316 int x_max = me_ctx->x_max - me_ctx->mb_size / 2; in get_sad_ob() local 324 x = av_clip(x, x_min, x_max); in get_sad_ob() 326 x_mv = av_clip(x_mv, x_min, x_max); in get_sad_ob() 857 pixel_mvs->mvs[pixel_refs->nb][0] = av_clip((mv_x * alpha) / ALPHA_MAX, x_min, x_max);\ 862 …ixel_mvs->mvs[pixel_refs->nb][0] = av_clip(-mv_x * (ALPHA_MAX - alpha) / ALPHA_MAX, x_min, x_max);\ [all …]
|
D | vf_drawtext.c | 1299 int x_min = 32000, x_max = -32000; in draw_text() local 1387 x_max = FFMAX(glyph->bbox.xMax, x_max); in draw_text() 1390 s->max_glyph_w = x_max - x_min; in draw_text()
|
/third_party/mesa3d/src/intel/common/ |
D | intel_guardband.h | 27 intel_calculate_guardband_size(uint32_t x_min, uint32_t x_max, in intel_calculate_guardband_size() argument 74 if (GFX_VER == 6 && (x_min & 1 || x_max & 1 || y_min & 1 || y_max & 1)) { in intel_calculate_guardband_size() 85 const float ss_ra_xmax = MAX3(x_max, m30 + m00, m30 - m00); in intel_calculate_guardband_size()
|
/third_party/gstreamer/gstplugins_bad/gst/librfb/ |
D | rfbdecoder.c | 1014 gint32 x, x_count G_GNUC_UNUSED, x_end, x_max, x_max_16; in rfb_decoder_hextile_encoding() local 1024 x_max = start_x + rect_w; in rfb_decoder_hextile_encoding() 1026 x_max_16 = x_max - 16; in rfb_decoder_hextile_encoding() 1030 for (x = start_x; x < x_max; x += 16) { in rfb_decoder_hextile_encoding()
|
/third_party/skia/third_party/externals/freetype/src/sfnt/ |
D | ttcolr.c | 1155 FT_Int x_min, x_max, y_min, y_max; in tt_face_colr_blend_layer() local 1159 x_max = FT_MAX( dstSlot->bitmap_left + (FT_Int)dstSlot->bitmap.width, in tt_face_colr_blend_layer() 1167 x_max != dstSlot->bitmap_left + (FT_Int)dstSlot->bitmap.width || in tt_face_colr_blend_layer() 1173 FT_UInt width = (FT_UInt)( x_max - x_min ); in tt_face_colr_blend_layer()
|
D | sfwoff2.c | 664 FT_Int x_max = 0; in compute_bbox() local 677 x_max = points[0].x; in compute_bbox() 689 x_max = FT_MAX( x, x_max ); in compute_bbox() 699 WRITE_SHORT( pointer, x_max ); in compute_bbox()
|
/third_party/ffmpeg/libavutil/ |
D | eval.c | 267 double x_max = eval_expr(p, e->param[1]); in eval_expr() local 270 p->var[0] = ff_reverse[i&255]*x_max/255; in eval_expr() 272 p->var[0] = x_max*pow(0.9, i-255); in eval_expr()
|
/third_party/mesa3d/src/intel/vulkan/ |
D | genX_cmd_buffer.c | 3584 uint32_t x_min = 0, x_max = fb_size_max; in cmd_buffer_emit_viewport() local 3591 x_max = MIN2(x_min, gfx->render_area.offset.x + in cmd_buffer_emit_viewport() 3614 x_max = MIN2(x_min, scissor->offset.x + scissor->extent.width); in cmd_buffer_emit_viewport() 3623 if (x_min > 0 || x_max < fb_size_max || in cmd_buffer_emit_viewport() 3625 intel_calculate_guardband_size(x_min, x_max, y_min, y_max, in cmd_buffer_emit_viewport() 3734 uint32_t x_max = MIN2(s->offset.x + s->extent.width - 1, in cmd_buffer_emit_scissor() local 3744 x_max = clamp_int64((uint64_t) x_max, 0, in cmd_buffer_emit_scissor() 3753 .ScissorRectangleXMax = x_max in cmd_buffer_emit_scissor()
|
/third_party/ffmpeg/libavcodec/ |
D | hevc_filter.c | 224 int x_max = ((x0 + width ) >> s->ps.sps->log2_min_pu_size); in restore_tqb_pixels() local 228 for (x = x_min; x < x_max; x++) { in restore_tqb_pixels()
|