Home
last modified time | relevance | path

Searched refs:y_start (Results 1 - 16 of 16) sorted by relevance

/third_party/ffmpeg/libavcodec/
H A Dgif.c158 int *x_start, int *y_start) in gif_crop_translucent()
171 while (*y_start < y_end) { in gif_crop_translucent()
174 if (buf[linesize * *y_start + i] != trans) { in gif_crop_translucent()
182 (*y_start)++; in gif_crop_translucent()
186 while (y_end > *y_start) { in gif_crop_translucent()
202 for (int i = *y_start; i < y_end; i++) { in gif_crop_translucent()
216 for (int i = *y_start; i < y_end; i++) { in gif_crop_translucent()
227 *height = y_end + 1 - *y_start; in gif_crop_translucent()
230 *width, *height, *x_start, *y_start, avctx->width, avctx->height); in gif_crop_translucent()
237 int *width, int *height, int *x_start, int *y_start) in gif_crop_opaque()
155 gif_crop_translucent(AVCodecContext *avctx, const uint8_t *buf, const int linesize, int *width, int *height, int *x_start, int *y_start) gif_crop_translucent() argument
234 gif_crop_opaque(AVCodecContext *avctx, const uint32_t *palette, const uint8_t *buf, const int linesize, int *width, int *height, int *x_start, int *y_start) gif_crop_opaque() argument
301 int x_start = 0, y_start = 0, trans = s->transparent_index; gif_image_write_image() local
[all...]
H A Dgifdec.c116 const int y_start = t * linesize; in gif_copy_img_rect() local
118 *src_py = src + y_start, in gif_copy_img_rect()
119 *dst_py = dst + y_start; in gif_copy_img_rect()
/third_party/skia/third_party/externals/libwebp/src/dec/
H A Dframe_dec.c433 int y_start = MACROBLOCK_VPOS(mb_y); in FinishRow() local
436 y_start -= extra_y_rows; in FinishRow()
454 if (dec->alpha_data_ != NULL && y_start < y_end) { in FinishRow()
455 io->a = VP8DecompressAlphaRows(dec, io, y_start, y_end - y_start); in FinishRow()
461 if (y_start < io->crop_top) { in FinishRow()
462 const int delta_y = io->crop_top - y_start; in FinishRow()
463 y_start = io->crop_top; in FinishRow()
472 if (y_start < y_end) { in FinishRow()
479 io->mb_y = y_start in FinishRow()
[all...]
H A Dvp8l_dec.c722 static int SetCropWindow(VP8Io* const io, int y_start, int y_end, in SetCropWindow() argument
724 assert(y_start < y_end); in SetCropWindow()
729 if (y_start < io->crop_top) { in SetCropWindow()
730 const int delta = io->crop_top - y_start; in SetCropWindow()
731 y_start = io->crop_top; in SetCropWindow()
734 if (y_start >= y_end) return 0; // Crop window is empty. in SetCropWindow()
738 io->mb_y = y_start - io->crop_top; in SetCropWindow()
740 io->mb_h = y_end - y_start; in SetCropWindow()
/third_party/skia/third_party/externals/libwebp/src/dsp/
H A Dlossless.c202 int y_start, int y_end, in PredictorInverseTransform_C()
205 if (y_start == 0) { // First Row follows the L (mode=1) mode. in PredictorInverseTransform_C()
210 ++y_start; in PredictorInverseTransform_C()
214 int y = y_start; in PredictorInverseTransform_C()
293 int y_start, int y_end, in ColorSpaceInverseTransform_C()
301 int y = y_start; in ColorSpaceInverseTransform_C()
332 TYPE* dst, int y_start, int y_end, int width) { \
334 for (y = y_start; y < y_end; ++y) { \
342 int y_start, int y_end, const TYPE* src, \
352 for (y = y_start;
201 PredictorInverseTransform_C(const VP8LTransform* const transform, int y_start, int y_end, const uint32_t* in, uint32_t* out) PredictorInverseTransform_C() argument
292 ColorSpaceInverseTransform_C(const VP8LTransform* const transform, int y_start, int y_end, const uint32_t* src, uint32_t* dst) ColorSpaceInverseTransform_C() argument
[all...]
H A Dlossless.h97 uint32_t* dst, int y_start,
101 uint8_t* dst, int y_start,
111 const struct VP8LTransform* const transform, int y_start, int y_end,
H A Dlossless_mips_dsp_r2.c25 TYPE* dst, int y_start, int y_end, \
28 for (y = y_start; y < y_end; ++y) { \
/third_party/ffmpeg/libavfilter/
H A Dvf_paletteuse.c80 int x_start, int y_start, int width, int height);
400 int x_start, int y_start, int w, int h, in set_frame()
407 uint32_t *src = ((uint32_t *)in ->data[0]) + y_start*src_linesize; in set_frame()
408 uint8_t *dst = out->data[0] + y_start*dst_linesize; in set_frame()
411 h += y_start; in set_frame()
413 for (y = y_start; y < h; y++) { in set_frame()
843 int x_start = 0, y_start = 0; in set_processing_window() local
862 while (y_start < y_end && !memcmp(prv_srcp + y_start*prv_src_linesize, in set_processing_window()
863 cur_srcp + y_start*cur_src_linesiz in set_processing_window()
399 set_frame(PaletteUseContext *s, AVFrame *out, AVFrame *in, int x_start, int y_start, int w, int h, enum dithering_mode dither, const enum color_search_method search_method) set_frame() argument
[all...]
H A Dvf_fieldmatch.c333 #define VERTICAL_HALF(y_start, y_end) do { \ in calc_combed_score()
334 for (y = y_start; y < y_end; y++) { \ in calc_combed_score()
/third_party/astc-encoder/Source/
H A Dastcenc_image.cpp351 unsigned int y_start = ypos; in store_image_block() local
353 unsigned int y_count = y_end - y_start; in store_image_block()
376 for (unsigned int y = y_start; y < y_end; y++) in store_image_block()
453 for (unsigned int y = y_start; y < y_end; y++) in store_image_block()
515 for (unsigned int y = y_start; y < y_end; y++) in store_image_block()
/third_party/vk-gl-cts/external/openglcts/modules/glesext/geometry_shader/
H A DesextcGeometryShaderRendering.cpp1734 int y_start = 0; in verify() local
1743 y_start = 1 /* px */; in verify()
1749 y_start = 1 /* px */; in verify()
1755 y_start = 5 /* px */; in verify()
1761 y_start = 5 /* px */; in verify()
1776 y = y_start + instance_id * 7 /* pixel block size */; in verify()
1784 y = y_start + instance_id * 7 /* pixel block size */; in verify()
/third_party/mesa3d/src/egl/drivers/dri2/
H A Dplatform_x11.c181 int y_start = 0; in swrastPutImage() local
186 gc, w, this_lines, x, y_start, 0, dri2_surf->depth, in swrastPutImage()
187 this_lines * stride_b, ((const uint8_t *)data + y_start * stride_b)); in swrastPutImage()
189 y_start += this_lines; in swrastPutImage()
/third_party/mesa3d/src/vulkan/wsi/
H A Dwsi_common_x11.c1318 int y_start = 0; in x11_present_to_x11_sw() local
1327 0,y_start,0,24, in x11_present_to_x11_sw()
1329 (const uint8_t *)myptr + (y_start * stride_b)); in x11_present_to_x11_sw()
1331 y_start += this_lines; in x11_present_to_x11_sw()
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_fs_visitor.cpp474 const fs_reg y_start = brw_vec1_grf(coef_payload.nr, 6); in emit_interpolation_setup_gfx6() local
483 abld.ADD(float_pixel_y, this->pixel_y, negate(y_start)); in emit_interpolation_setup_gfx6()
/third_party/skia/third_party/externals/libwebp/src/mux/
H A Danim_encode.c716 const int y_start = (rect->y_offset_ + block_size) & ~(block_size - 1); in FlattenSimilarBlocks() local
724 for (j = y_start; j < y_end; j += block_size) { in FlattenSimilarBlocks()
/third_party/rust/crates/bindgen/bindgen-tests/tests/
H A Dstylo.hpp[all...]

Completed in 54 milliseconds