/third_party/ffmpeg/libavcodec/x86/ |
H A D | videodsp_init.c | 75 x86_reg start_x, x86_reg bh); 77 x86_reg start_x, x86_reg n_words, x86_reg bh); 126 x86_reg start_y, start_x, end_y, end_x, src_y_add = 0, p; in emulated_edge_mc() local 151 start_x = FFMAX(0, -src_x); in emulated_edge_mc() 154 av_assert2(start_x < end_x && block_w > 0); in emulated_edge_mc() 158 src += (src_y_add + start_y) * src_stride + start_x; in emulated_edge_mc() 159 w = end_x - start_x; in emulated_edge_mc() 161 vfix_tbl[w - 1](dst + start_x, dst_stride, src, src_stride, in emulated_edge_mc() 164 v_extend_var(dst + start_x, dst_stride, src, src_stride, in emulated_edge_mc() 169 if (start_x) { in emulated_edge_mc() [all...] |
H A D | videodsp.asm | 86 cglobal emu_edge_hvar, 5, 6, 1, dst, dst_stride, start_x, n_words, h, w 403 cglobal emu_edge_hfix %+ %%n, 4, 4, 1, dst, dst_stride, start_x, bh 405 cglobal emu_edge_hfix %+ %%n, 4, 5, 1, dst, dst_stride, start_x, bh, val
|
/third_party/ffmpeg/libavfilter/ |
H A D | bbox.c | 29 int start_x; \ 36 for (start_x = 0; start_x < w; start_x++) \ 38 if ((data[y * linesize + start_x] > min_val)) \ 41 if (start_x == w) /* no points found */ \ 45 for (end_x = w - 1; end_x >= start_x; end_x--) \ 71 bbox->x1 = start_x; \
|
H A D | avf_showspectrum.c | 107 int start_x, start_y; member 808 dst = s->outpicref->data[0] + (s->start_y - 1) * s->outpicref->linesize[0] + s->start_x - 1; in draw_legend() 811 dst = s->outpicref->data[0] + (s->start_y + s->h) * s->outpicref->linesize[0] + s->start_x - 1; in draw_legend() 816 dst[s->start_x - 1] = 200; in draw_legend() 817 dst[s->start_x + s->w] = 200; in draw_legend() 825 dst[s->start_x - 2] = 200; in draw_legend() 826 dst[s->start_x + s->w + 1] = 200; in draw_legend() 830 dst[s->start_x - 3] = 200; in draw_legend() 831 dst[s->start_x + s->w + 2] = 200; in draw_legend() 833 dst = s->outpicref->data[0] + (s->start_y - 2) * s->outpicref->linesize[0] + s->start_x; in draw_legend() [all...] |
H A D | vf_minterpolate.c | 875 int start_x, start_y; in bidirectional_obmc() local 878 start_x = (mb_x << mi_ctx->log2_mb_size) - mi_ctx->mb_size / 2 + mv_x * a / ALPHA_MAX; in bidirectional_obmc() 881 startc_x = av_clip(start_x, 0, width - 1); in bidirectional_obmc() 883 endc_x = av_clip(start_x + (2 << mi_ctx->log2_mb_size), 0, width - 1); in bidirectional_obmc() 897 int obmc_weight = obmc_tab_linear[4 - mi_ctx->log2_mb_size][(x - start_x) + ((y - start_y) << (mi_ctx->log2_mb_size + 1))]; in bidirectional_obmc() 983 int start_x = x_mb + (sb_x << (n - 1)); in var_size_bmc() local 985 int end_x = start_x + (1 << (n - 1)); in var_size_bmc() 991 for (x = start_x; x < end_x; x++) { in var_size_bmc() 1017 int start_x, start_y; in bilateral_obmc() local 1030 start_x in bilateral_obmc() [all...] |
H A D | vsrc_mandelbrot.c | 66 double start_x; member 95 {"start_x", "set the initial x position", OFFSET(start_x), AV_OPT_TYPE_DOUBLE, {.dbl=-0.743643887037158704752191506114774}, -100, 100, FLAGS }, 177 x= lrint((p->p[0] - s->start_x) / scale + s->w/2); in fill_from_cache() 260 const double cr=s->start_x+scale*(x-s->w/2); in draw_mandelbrot()
|
/third_party/ffmpeg/libavcodec/ |
H A D | videodsp_template.c | 34 int start_y, start_x, end_y, end_x; in ff_emulated_edge_mc() local 60 start_x = FFMAX(0, -src_x); in ff_emulated_edge_mc() 64 av_assert2(start_x < end_x && block_w); in ff_emulated_edge_mc() 66 w = end_x - start_x; in ff_emulated_edge_mc() 67 src += start_y * src_linesize + start_x * (ptrdiff_t)sizeof(pixel); in ff_emulated_edge_mc() 68 buf += start_x * sizeof(pixel); in ff_emulated_edge_mc() 90 buf -= block_h * buf_linesize + start_x * (ptrdiff_t)sizeof(pixel); in ff_emulated_edge_mc() 95 for(x = 0; x < start_x; x++) { in ff_emulated_edge_mc() 96 bufp[x] = bufp[start_x]; in ff_emulated_edge_mc()
|
H A D | arbc.c | 56 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() 60 for (int k = start_x; k < end_x; k++) { 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() 101 for (int k = start_x; k < end_x; k += step_w) { in fill_tileX()
|
H A D | rasc.c | 251 int type, start_x, start_y, end_x, end_y, mov_x, mov_y; in decode_move() local 256 start_x = bytestream2_get_le16(&mc); in decode_move() 264 if (start_x >= avctx->width || start_y >= avctx->height || in decode_move() 270 if (start_x >= end_x || start_y >= end_y) in decode_move() 273 w = end_x - start_x; in decode_move() 282 b1 = s->frame1->data[0] + s->frame1->linesize[0] * (start_y + h - 1) + start_x * s->bpp; in decode_move() 283 b2 = s->frame2->data[0] + s->frame2->linesize[0] * (start_y + h - 1) + start_x * s->bpp; in decode_move()
|
H A D | h264_slice.c | 2556 static void loop_filter(const H264Context *h, H264SliceContext *sl, int start_x, int end_x) in loop_filter() argument 2569 for (mb_x = start_x; mb_x < end_x; mb_x++) in loop_filter()
|
/third_party/astc-encoder/Utils/ |
H A D | astc_test_autoextract_hdr.cpp | 173 int start_x = worst_x_block * blockdim_x; in main() local 188 int outblk_x = end_x - start_x; in main() 191 printf("Block errors found at ~(%u, %u) px\n", start_x, start_y); in main() 198 data_out[(y * outblk_x * 4) + (x * 4) + 0] = data_ref[((start_y + y) * ref_dim_x * 4) + ((start_x + x) * 4) + 0]; in main() 199 data_out[(y * outblk_x * 4) + (x * 4) + 1] = data_ref[((start_y + y) * ref_dim_x * 4) + ((start_x + x) * 4) + 1]; in main() 200 data_out[(y * outblk_x * 4) + (x * 4) + 2] = data_ref[((start_y + y) * ref_dim_x * 4) + ((start_x + x) * 4) + 2]; in main() 201 data_out[(y * outblk_x * 4) + (x * 4) + 3] = data_ref[((start_y + y) * ref_dim_x * 4) + ((start_x + x) * 4) + 3]; in main()
|
H A D | astc_test_autoextract.cpp | 173 int start_x = worst_x_block * blockdim_x; in main() local 188 int outblk_x = end_x - start_x; in main() 191 printf("Block errors found at ~(%u, %u) px\n", start_x, start_y); in main() 194 uint8_t* data_out = &(data_ref[pix(ref_dim_x, start_y, start_x, 4, 0)]); in main()
|
/third_party/skia/third_party/externals/libwebp/src/enc/ |
H A D | predictor_enc.c | 307 const int start_x = tile_x << bits; in GetBestPredictorForTile() local 311 const int max_x = GetMin(tile_size, width - start_x); in GetBestPredictorForTile() 313 const int have_left = (start_x > 0); in GetBestPredictorForTile() 316 const int context_start_x = start_x - have_left; in GetBestPredictorForTile() 318 const int context_width = max_x + have_left + (max_x < width - start_x); in GetBestPredictorForTile() 379 start_x, start_x + max_x, y, max_quantization, exact, in GetBestPredictorForTile()
|
/third_party/vk-gl-cts/external/openglcts/modules/glesext/geometry_shader/ |
H A D | esextcGeometryShaderRendering.cpp | 3418 int start_x = 0; in verify() local 3426 start_x = 3; /* skip the corner */ in verify() 3441 start_x = single_rt_width - 2; /* middle segment */ in verify() 3444 end_x = start_x; in verify() 3456 start_x = 3; /* skip the corner */ in verify() 3471 start_x = 1; /* middle segment */ in verify() 3474 end_x = start_x; in verify() 3490 int dx = (end_x != start_x) ? 1 : 0; in verify() 3492 int n_pixels = (end_x - start_x) + (end_y - start_y); in verify() 3496 int cur_x = start_x in verify() 3537 int start_x = 0; verify() local [all...] |
/third_party/mesa3d/src/amd/common/ |
H A D | ac_surface_meta_address_test.c | 200 unsigned start_x, unsigned start_y, unsigned start_z, in one_dcc_address_test() 276 for (in.x = start_x; in.x < in.pitch; in.x += dout.compressBlkWidth) { in one_dcc_address_test() 424 unsigned start_x, unsigned start_y, unsigned start_z) in one_htile_address_test() 471 for (in.x = start_x; in.x < width; in.x++) { in one_htile_address_test() 581 unsigned start_x, unsigned start_y, unsigned start_z) in one_cmask_address_test() 630 for (in.x = start_x; in.x < width; in.x++) { in one_cmask_address_test() 195 one_dcc_address_test(const char *name, const char *test, ADDR_HANDLE addrlib, const struct radeon_info *info, unsigned width, unsigned height, unsigned depth, unsigned samples, unsigned bpp, unsigned swizzle_mode, bool pipe_aligned, bool rb_aligned, unsigned mrt_index, unsigned start_x, unsigned start_y, unsigned start_z, unsigned start_sample) one_dcc_address_test() argument 420 one_htile_address_test(const char *name, const char *test, ADDR_HANDLE addrlib, const struct radeon_info *info, unsigned width, unsigned height, unsigned depth, unsigned bpp, unsigned swizzle_mode, unsigned start_x, unsigned start_y, unsigned start_z) one_htile_address_test() argument 576 one_cmask_address_test(const char *name, const char *test, ADDR_HANDLE addrlib, const struct radeon_info *info, unsigned width, unsigned height, unsigned depth, unsigned bpp, unsigned swizzle_mode, bool pipe_aligned, bool rb_aligned, unsigned mrt_index, unsigned start_x, unsigned start_y, unsigned start_z) one_cmask_address_test() argument
|
/third_party/python/Lib/idlelib/idle_test/ |
H A D | test_sidebar.py | 275 start_x, start_y = self.get_line_screen_position(start_line) 279 x=start_x, y=start_y) 289 map(int, lerp(start_x, end_x, steps=11)),
|
/third_party/mesa3d/src/gallium/drivers/vc4/ |
H A D | vc4_resource.c | 898 uint32_t start_x, uint32_t start_y, in vc4_dump_surface_msaa_char() 905 for (int x = start_x; x < start_x + w; x++) { in vc4_dump_surface_msaa_char() 910 if (x == start_x && y == start_y) in vc4_dump_surface_msaa_char() 897 vc4_dump_surface_msaa_char(struct pipe_surface *psurf, uint32_t start_x, uint32_t start_y, uint32_t w, uint32_t h) vc4_dump_surface_msaa_char() argument
|
/third_party/astc-encoder/Source/ |
H A D | astcenc_entry.cpp | 914 int start_x = x * block_x; in compress_image() local 915 int end_x = astc::min(dim_x, start_x + block_x); in compress_image() 934 for (int ax = start_x; ax < end_x; ax++) in compress_image()
|
H A D | stb_image.h | 6572 int start_x, start_y; 6679 g->cur_x = g->start_x; 6857 g->start_x = x * 4; 6859 g->max_x = g->start_x + w * 4; 6861 g->cur_x = g->start_x;
|
/third_party/skia/third_party/externals/freetype/src/psaux/ |
H A D | cffdecode.c | 1528 FT_Pos start_x, start_y; /* record start x, y values for */ in FT_LOCAL_DEF() local 1544 start_x = x; in FT_LOCAL_DEF() 1585 x = start_x; in FT_LOCAL_DEF()
|
/third_party/mesa3d/src/microsoft/vulkan/ |
H A D | dzn_device.c | 2565 uint32_t y, uint32_t z, uint32_t *start_x) in dzn_buffer_get_line_copy_loc() 2598 *start_x = ((offset % offset_alignment) / blksz) * blkw; in dzn_buffer_get_line_copy_loc() 2599 new_loc.PlacedFootprint.Footprint.Width = *start_x + region->imageExtent.width; in dzn_buffer_get_line_copy_loc() 2562 dzn_buffer_get_line_copy_loc(const struct dzn_buffer *buf, VkFormat format, const VkBufferImageCopy2 *region, const D3D12_TEXTURE_COPY_LOCATION *loc, uint32_t y, uint32_t z, uint32_t *start_x) dzn_buffer_get_line_copy_loc() argument
|
H A D | dzn_private.h | 974 uint32_t y, uint32_t z, uint32_t *start_x);
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_tables.cpp | 1938 float start_x = column->WorkMinX; in TableBeginCell() local 1940 start_x += table->RowIndentOffsetX; // ~~ += window.DC.Indent.x - table->HostIndentX, except we locked it for the row. in TableBeginCell() 1942 window->DC.CursorPos.x = start_x; in TableBeginCell() 1945 window->DC.ColumnsOffset.x = start_x - window->Pos.x - window->DC.Indent.x; // FIXME-WORKRECT in TableBeginCell()
|
/third_party/libinput/test/ |
H A D | test-tablet.c | 662 double start_x = 20, in START_TEST() local 667 start_x = 15; in START_TEST() 671 start_x = 20; in START_TEST() 680 litest_tablet_proximity_in(dev, start_x, start_y, axes); in START_TEST() 683 litest_tablet_tip_down(dev, start_x, start_y, axes); in START_TEST() 687 start_x++; in START_TEST()
|