Home
last modified time | relevance | path

Searched refs:start_y (Results 1 – 25 of 42) sorted by relevance

12

/third_party/ffmpeg/libavfilter/
Dbbox.c30 int start_y; \
53 for (start_y = 0; start_y < h; start_y++) { \
63 for (end_y = h - 1; end_y >= start_y; end_y--) { \
72 bbox->y1 = start_y; \
Davf_showspectrum.c99 int start_x, start_y; member
712 dst = s->outpicref->data[0] + (s->start_y - 1) * s->outpicref->linesize[0] + s->start_x - 1; in draw_legend()
715 dst = s->outpicref->data[0] + (s->start_y + s->h) * s->outpicref->linesize[0] + s->start_x - 1; in draw_legend()
719 dst = s->outpicref->data[0] + (y + s->start_y - 1) * s->outpicref->linesize[0]; in draw_legend()
728 … dst = s->outpicref->data[0] + (s->start_y + h * (ch + 1) - y - hh) * s->outpicref->linesize[0]; in draw_legend()
733 … dst = s->outpicref->data[0] + (s->start_y + h * (ch + 1) - y - hh) * s->outpicref->linesize[0]; in draw_legend()
737 dst = s->outpicref->data[0] + (s->start_y - 2) * s->outpicref->linesize[0] + s->start_x; in draw_legend()
740 dst = s->outpicref->data[0] + (s->start_y - 3) * s->outpicref->linesize[0] + s->start_x; in draw_legend()
743 … dst = s->outpicref->data[0] + (s->h + s->start_y + 1) * s->outpicref->linesize[0] + s->start_x; in draw_legend()
747 … dst = s->outpicref->data[0] + (s->h + s->start_y + 2) * s->outpicref->linesize[0] + s->start_x; in draw_legend()
[all …]
Dvf_minterpolate.c884 int start_x, start_y; in bidirectional_obmc() local
888start_y = (mb_y << mi_ctx->log2_mb_size) - mi_ctx->mb_size / 2 + mv_y * a / ALPHA_MAX; in bidirectional_obmc()
891 startc_y = av_clip(start_y, 0, height - 1); in bidirectional_obmc()
893 endc_y = av_clip(start_y + (2 << mi_ctx->log2_mb_size), 0, height - 1); in bidirectional_obmc()
906 …weight = obmc_tab_linear[4 - mi_ctx->log2_mb_size][(x - start_x) + ((y - start_y) << (mi_ctx->log2… in bidirectional_obmc()
993 int start_y = y_mb + (sb_y << (n - 1)); in var_size_bmc() local
995 int end_y = start_y + (1 << (n - 1)); in var_size_bmc()
997 for (y = start_y; y < end_y; y++) { in var_size_bmc()
1026 int start_x, start_y; in bilateral_obmc() local
1040 start_y = (mb_y << mi_ctx->log2_mb_size) - mi_ctx->mb_size / 2; in bilateral_obmc()
[all …]
/third_party/ffmpeg/libavcodec/
Dvideodsp_template.c30 int start_y, start_x, end_y, end_x; in FUNC() local
55 start_y = FFMAX(0, -src_y); in FUNC()
59 av_assert2(start_y < end_y && block_h); in FUNC()
63 src += start_y * src_linesize + start_x * sizeof(pixel); in FUNC()
67 for (y = 0; y < start_y; y++) { in FUNC()
Darbc.c56 int start_y = y * 4, start_x = x * 4; in fill_tile4() local
57 int end_y = start_y + 4, end_x = start_x + 4; in fill_tile4()
59 for (int j = start_y; j < end_y; j++) { in fill_tile4()
94 int start_y = y * tile_height, start_x = x * tile_width; in fill_tileX() local
95 int end_y = start_y + tile_height, end_x = start_x + tile_width; in fill_tileX()
97 if (start_x >= avctx->width || start_y >= avctx->height) in fill_tileX()
100 for (int j = start_y; j < end_y; j += step_h) { in fill_tileX()
Dsnowdec.c117 …ubband_slice_buffered(SnowContext *s, SubBand *b, slice_buffer * sb, int start_y, int h, int save_… in decode_subband_slice_buffered() argument
131 if (start_y != 0) in decode_subband_slice_buffered()
135 for(y=start_y; y<h; y++){ in decode_subband_slice_buffered()
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
255 if (start_y != 0) in correlate_slice_buffered()
256 …line = slice_buffer_get_line(sb, ((start_y - 1) * b->stride_line) + b->buf_y_offset) + b->buf_x_of… in correlate_slice_buffered()
258 for(y=start_y; y<end_y; y++){ in correlate_slice_buffered()
563 int start_y; in decode_frame() local
[all …]
Drasc.c249 int type, start_x, start_y, end_x, end_y, mov_x, mov_y; in decode_move() local
255 start_y = bytestream2_get_le16(&mc); in decode_move()
262 if (start_x >= avctx->width || start_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()
280 b1 = s->frame1->data[0] + s->frame1->linesize[0] * (start_y + h - 1) + start_x * s->bpp; in decode_move()
281 b2 = s->frame2->data[0] + s->frame2->linesize[0] * (start_y + h - 1) + start_x * s->bpp; in decode_move()
/third_party/flutter/skia/src/core/
DSkScan_Path.cpp101 SkBlitter* blitter, int start_y, int stop_y, in walk_edges() argument
105 int curr_y = start_y; in walk_edges()
223 static void walk_simple_edges(SkEdge* prevHead, SkBlitter* blitter, int start_y, int stop_y) { in walk_simple_edges() argument
233 ASSERT_RETURN(local_top >= start_y); in walk_simple_edges()
397 int start_y, int stop_y, int shiftEdgesUp, bool pathContainedInClip) { in sk_fill_path() argument
419 if (rect.fTop < start_y) { in sk_fill_path()
420 rect.fTop = start_y; in sk_fill_path()
452 start_y = SkLeftShift(start_y, shiftEdgesUp); in sk_fill_path()
454 if (!pathContainedInClip && start_y < shiftedClip.fTop) { in sk_fill_path()
455 start_y = shiftedClip.fTop; in sk_fill_path()
[all …]
DSkScan_AAAPath.cpp1100 int start_y, in aaa_walk_convex_edges() argument
1551 int start_y, in aaa_walk_edges() argument
1561 SkFixed y = SkTMax(prevHead->fNext->fUpperY, SkIntToFixed(start_y)); in aaa_walk_edges()
1578 if (isInverse && SkIntToFixed(start_y) != y) { in aaa_walk_edges()
1580 if (SkFixedFloorToInt(y) != start_y) { in aaa_walk_edges()
1582 SkFixedFloorToInt(leftClip), start_y, width, SkFixedFloorToInt(y) - start_y); in aaa_walk_edges()
1583 start_y = SkFixedFloorToInt(y); in aaa_walk_edges()
1586 isUsingMask ? static_cast<MaskAdditiveBlitter*>(blitter)->getRow(start_y) : nullptr; in aaa_walk_edges()
1588 start_y, in aaa_walk_edges()
1591 fixed_to_alpha(y - SkIntToFixed(start_y)), in aaa_walk_edges()
[all …]
DSkScan_AntiPath.cpp315 int start_y = y >> SHIFT; in blitRect() local
317 int count = stop_y - start_y; in blitRect()
350 SkASSERT(start_y > fCurrIY); in blitRect()
360 fRealBlitter->blitV(ileft + fLeft, start_y, count, in blitRect()
375 fRealBlitter->blitAntiRect(ileft + fLeft, start_y, n, count, in blitRect()
/third_party/skia/src/core/
DSkScan_Path.cpp101 SkBlitter* blitter, int start_y, int stop_y, in walk_edges() argument
105 int curr_y = start_y; in walk_edges()
222 static void walk_simple_edges(SkEdge* prevHead, SkBlitter* blitter, int start_y, int stop_y) { in walk_simple_edges() argument
232 ASSERT_RETURN(local_top >= start_y); in walk_simple_edges()
396 int start_y, int stop_y, int shiftEdgesUp, bool pathContainedInClip) { in sk_fill_path() argument
418 if (rect.fTop < start_y) { in sk_fill_path()
419 rect.fTop = start_y; in sk_fill_path()
451 start_y = SkLeftShift(start_y, shiftEdgesUp); in sk_fill_path()
453 if (!pathContainedInClip && start_y < shiftedClip.fTop) { in sk_fill_path()
454 start_y = shiftedClip.fTop; in sk_fill_path()
[all …]
DSkScan_AAAPath.cpp1099 int start_y, in aaa_walk_convex_edges() argument
1557 int start_y, in aaa_walk_edges() argument
1567 SkFixed y = std::max(prevHead->fNext->fUpperY, SkIntToFixed(start_y)); in aaa_walk_edges()
1582 if (isInverse && SkIntToFixed(start_y) != y) { in aaa_walk_edges()
1584 if (SkFixedFloorToInt(y) != start_y) { in aaa_walk_edges()
1586 SkFixedFloorToInt(leftClip), start_y, width, SkFixedFloorToInt(y) - start_y); in aaa_walk_edges()
1587 start_y = SkFixedFloorToInt(y); in aaa_walk_edges()
1590 isUsingMask ? static_cast<MaskAdditiveBlitter*>(blitter)->getRow(start_y) : nullptr; in aaa_walk_edges()
1592 start_y, in aaa_walk_edges()
1595 fixed_to_alpha(y - SkIntToFixed(start_y)), in aaa_walk_edges()
[all …]
DSkScan_AntiPath.cpp314 int start_y = y >> SHIFT; in blitRect() local
316 int count = stop_y - start_y; in blitRect()
349 SkASSERT(start_y > fCurrIY); in blitRect()
359 fRealBlitter->blitV(ileft + fLeft, start_y, count, in blitRect()
374 fRealBlitter->blitAntiRect(ileft + fLeft, start_y, n, count, in blitRect()
/third_party/ffmpeg/libavcodec/x86/
Dvideodsp_init.c35 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
184 start_y = FFMAX(0, -src_y); in emulated_edge_mc()
189 av_assert2(start_y < end_y && block_h > 0); in emulated_edge_mc()
192 src += (src_y_add + start_y) * src_stride + start_x; 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()
Dvideodsp.asm51 ; |----| <- start_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
301 sub end_yq, start_yq ; end_y -= start_y
304 test start_yq, start_yq ; if (start_y) {
310 dec start_yq ; } while (--start_y)
/third_party/weston/ivi-shell/
Divi-layout-transition.c295 int32_t start_y; member
330 const int32_t desty = mrv->start_y + in transition_move_resize_view_user_frame()
331 (mrv->end_y - mrv->start_y) * current; in transition_move_resize_view_user_frame()
354 int32_t start_x, int32_t start_y, in create_move_resize_view_transition() argument
388 data->start_y = start_y; in create_move_resize_view_transition()
409 surface->pending.prop.start_y in ivi_layout_transition_move_resize_view()
426 data->start_y = start_pos[1]; in ivi_layout_transition_move_resize_view()
673 int32_t start_y; member
690 const int32_t dest_y = data->start_y + in transition_move_layer_user_frame()
691 (data->end_y - data->start_y) * current; in transition_move_layer_user_frame()
[all …]
/third_party/gstreamer/gstplugins_bad/gst/librfb/
Drfbdecoder.c39 gint start_y, gint rect_w, gint rect_h);
41 gint start_x, gint start_y, gint rect_w, gint rect_h);
43 gint start_y, gint rect_w, gint rect_h);
45 gint start_y, gint rect_w, gint rect_h);
47 gint start_x, gint start_y, gint rect_w, gint rect_h);
856 rfb_decoder_raw_encoding (RfbDecoder * decoder, gint start_x, gint start_y, in rfb_decoder_raw_encoding() argument
872 decoder->frame + (((start_y * decoder->rect_width) + in rfb_decoder_raw_encoding()
886 rfb_decoder_copyrect_encoding (RfbDecoder * decoder, gint start_x, gint start_y, in rfb_decoder_copyrect_encoding() argument
907 decoder->frame + ((start_y * decoder->rect_width) + in rfb_decoder_copyrect_encoding()
939 rfb_decoder_rre_encoding (RfbDecoder * decoder, gint start_x, gint start_y, in rfb_decoder_rre_encoding() argument
[all …]
/third_party/boost/boost/math/interpolators/detail/
Dbarycentric_rational_detail.hpp26 …barycentric_rational_imp(InputIterator1 start_x, InputIterator1 end_x, InputIterator2 start_y, siz…
58 …ational_imp(InputIterator1 start_x, InputIterator1 end_x, InputIterator2 start_y, size_t approxima… in barycentric_rational_imp() argument
70 for(unsigned i = 0; start_x != end_x; ++start_x, ++start_y, ++i) in barycentric_rational_imp()
79 if(boost::math::isnan(*start_y)) in barycentric_rational_imp()
86 m_y[i] = *start_y; in barycentric_rational_imp()
/third_party/boost/boost/math/interpolators/
Dbarycentric_rational.hpp43 …barycentric_rational(InputIterator1 start_x, InputIterator1 end_x, InputIterator2 start_y, size_t …
80 …ic_rational(InputIterator1 start_x, InputIterator1 end_x, InputIterator2 start_y, size_t approxima… in barycentric_rational() argument
81 …: m_imp(std::make_shared<detail::barycentric_rational_imp<Real>>(start_x, end_x, start_y, approxim… in barycentric_rational()
/third_party/vk-gl-cts/external/openglcts/modules/glesext/geometry_shader/
DesextcGeometryShaderRendering.cpp2148 float start_y = 0; in GeometryShaderRenderingLinesCase() local
2156 start_y = 0.0f; in GeometryShaderRenderingLinesCase()
2162 start_y = -1; in GeometryShaderRenderingLinesCase()
2179 …quad_coordinates.push_back(tcu::Vec4(-1 + dx_multiplier * dx, start_y + dy_multiplier * dy, 0, w))… in GeometryShaderRenderingLinesCase()
2180 …quad_coordinates.push_back(tcu::Vec4(1 - dx_multiplier * dx, start_y + dy_multiplier * dy, 0, w));… in GeometryShaderRenderingLinesCase()
3419 int start_y = 0; in verify() local
3427 start_y = 1 + instance_id * single_rt_height; /* middle segment */ in verify()
3430 end_y = start_y; in verify()
3442 start_y = 3 + instance_id * single_rt_height; /* skip the corner */ in verify()
3445 end_y = start_y + single_rt_height - 6; /* skip the corners */ in verify()
[all …]
/third_party/gstreamer/gstplugins_good/gst/goom2k1/
Dfilters.c385 gint start_y = 0; in zoomFilterFastRGB() local
412 pos10[start_y + x] = 0; in zoomFilterFastRGB()
413 c[0][start_y + x] = 0; in zoomFilterFastRGB()
414 c[1][start_y + x] = 0; in zoomFilterFastRGB()
415 c[2][start_y + x] = 0; in zoomFilterFastRGB()
416 c[3][start_y + x] = 0; in zoomFilterFastRGB()
444 pos = start_y + x; in zoomFilterFastRGB()
459 start_y += prevX; in zoomFilterFastRGB()
/third_party/skia/third_party/externals/libwebp/src/dec/
Dio_dec.c150 int start_y = io->mb_y; in GetAlphaSourceRow() local
156 if (start_y == 0) { in GetAlphaSourceRow()
160 --start_y; in GetAlphaSourceRow()
168 *num_rows = io->crop_bottom - io->crop_top - start_y; in GetAlphaSourceRow()
171 return start_y; in GetAlphaSourceRow()
184 const size_t start_y = GetAlphaSourceRow(io, &alpha, &num_rows); in EmitAlphaRGB() local
185 uint8_t* const base_rgba = buf->rgba + start_y * buf->stride; in EmitAlphaRGB()
208 const size_t start_y = GetAlphaSourceRow(io, &alpha, &num_rows); in EmitAlphaRGBA4444() local
209 uint8_t* const base_rgba = buf->rgba + start_y * buf->stride; in EmitAlphaRGBA4444()
/third_party/flutter/skia/third_party/externals/libwebp/src/dec/
Dio_dec.c155 int start_y = io->mb_y; in GetAlphaSourceRow() local
161 if (start_y == 0) { in GetAlphaSourceRow()
165 --start_y; in GetAlphaSourceRow()
173 *num_rows = io->crop_bottom - io->crop_top - start_y; in GetAlphaSourceRow()
176 return start_y; in GetAlphaSourceRow()
189 const int start_y = GetAlphaSourceRow(io, &alpha, &num_rows); in EmitAlphaRGB() local
190 uint8_t* const base_rgba = buf->rgba + start_y * buf->stride; in EmitAlphaRGB()
213 const int start_y = GetAlphaSourceRow(io, &alpha, &num_rows); in EmitAlphaRGBA4444() local
214 uint8_t* const base_rgba = buf->rgba + start_y * buf->stride; in EmitAlphaRGBA4444()
/third_party/flutter/engine/flutter/lib/ui/painting/
Dgradient.cc114 double start_y, in initTwoPointConical() argument
136 SkPoint::Make(start_x, start_y), start_radius, in initTwoPointConical()
/third_party/mesa3d/src/amd/common/
Dac_surface_meta_address_test.c200 unsigned start_x, unsigned start_y, unsigned start_z, in one_dcc_address_test() argument
277 for (in.y = start_y; in.y < in.height; in.y += dout.compressBlkHeight) { in one_dcc_address_test()
406 unsigned start_x, unsigned start_y, unsigned start_z) in one_htile_address_test() argument
454 for (in.y = start_y; in.y < height; in.y++) { in one_htile_address_test()
546 unsigned start_x, unsigned start_y, unsigned start_z) in one_cmask_address_test() argument
596 for (in.y = start_y; in.y < height; in.y++) { in one_cmask_address_test()

12