Home
last modified time | relevance | path

Searched refs:x_start (Results 1 - 12 of 12) sorted by relevance

/third_party/ffmpeg/libavcodec/
H A Dgif.c158 int *x_start, int *y_start) in gif_crop_translucent()
200 while (*x_start < x_end) { in gif_crop_translucent()
203 if (buf[linesize * i + *x_start] != trans) { in gif_crop_translucent()
210 (*x_start)++; in gif_crop_translucent()
214 while (x_end > *x_start) { in gif_crop_translucent()
228 *width = x_end + 1 - *x_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()
262 while (*x_start < x_end) { in gif_crop_opaque()
265 if (ref[y*ref_linesize + *x_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...]
/third_party/skia/modules/skparagraph/src/
H A DDecorations.cpp206 SkScalar x_start = 0; in calculateAvoidanceWaves() local
212 while (x_start + quarterWave * step < clip.width()) { in calculateAvoidanceWaves()
216 x_start += quarterWave * step; in calculateAvoidanceWaves()
221 auto remaining = clip.width() - x_start; in calculateAvoidanceWaves()
333 SkScalar x_start = 0; in calculateThickness()
341 while (x_start + quarterWave * 2 < clip.width()) { in calculateThickness()
353 x_start += quarterWave * 2; in calculateThickness()
358 auto remaining = clip.width() - x_start; in calculateThickness()
/third_party/skia/third_party/externals/libwebp/src/enc/
H A Dpredictor_enc.c68 static WEBP_INLINE void PredictBatch(int mode, int x_start, int y, in PredictBatch() argument
71 if (x_start == 0) { in PredictBatch()
79 ++x_start; in PredictBatch()
85 VP8LPredictorsSub[1](current + x_start, NULL, num_pixels, out); in PredictBatch()
87 VP8LPredictorsSub[mode](current + x_start, upper + x_start, num_pixels, in PredictBatch()
236 int x_start, int x_end, int y, int max_quantization, int exact, in GetResidual()
239 PredictBatch(mode, x_start, y, x_end - x_start, current_row, upper_row, in GetResidual()
244 for (x = x_start; in GetResidual()
233 GetResidual( int width, int height, uint32_t* const upper_row, uint32_t* const current_row, const uint8_t* const max_diffs, int mode, int x_start, int x_end, int y, int max_quantization, int exact, int used_subtract_green, uint32_t* const out) GetResidual() argument
[all...]
/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()
410 w += x_start; in set_frame()
414 for (x = x_start; x < w; x++) { in set_frame()
446 const int right = x < w - 1, down = y < h - 1, left = x > x_start; in set_frame()
459 const int right = x < w - 1, down = y < h - 1, left = x > x_start; in set_frame()
460 const int right2 = x < w - 2, left2 = x > x_start + 1; in set_frame()
479 const int right = x < w - 1, down = y < h - 1, left = x > x_start; in set_frame()
843 int x_start = 0, y_start = 0; in set_processing_window() local
882 while (x_start < x_en 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_curves.c313 const int x_start = point->x * scale; in interpolate() local
316 av_assert0(x_start >= 0 && x_start < lut_size && in interpolate()
319 for (x = x_start; x <= x_end; x++) { in interpolate()
320 const double xx = (x - x_start) * 1./scale; in interpolate()
/third_party/backends/backend/genesys/
H A Dimage_pipeline.cpp762 std::size_t x_start) : in ImagePipelineNodeCalibrate()
766 if (bottom.size() >= x_start && top.size() >= x_start) { in ImagePipelineNodeCalibrate()
767 size = std::min(bottom.size() - x_start, top.size() - x_start); in ImagePipelineNodeCalibrate()
774 offset_.push_back(bottom[i + x_start] / 65535.0f); in ImagePipelineNodeCalibrate()
775 multiplier_.push_back(65535.0f / (top[i + x_start] - bottom[i + x_start])); in ImagePipelineNodeCalibrate()
759 ImagePipelineNodeCalibrate(ImagePipelineNode& source, const std::vector<std::uint16_t>& bottom, const std::vector<std::uint16_t>& top, std::size_t x_start) ImagePipelineNodeCalibrate() argument
H A Dimage_pipeline.h490 const std::vector<std::uint16_t>& top, std::size_t x_start);
/third_party/astc-encoder/Source/
H A Dastcenc_image.cpp345 unsigned int x_start = xpos; in store_image_block() local
347 unsigned int x_count = x_end - x_start; in store_image_block()
378 uint8_t* data8_row = data8 + (4 * x_size * y) + (4 * x_start); in store_image_block()
455 uint16_t* data16_row = data16 + (4 * x_size * y) + (4 * x_start); in store_image_block()
517 float* data32_row = data32 + (4 * x_size * y) + (4 * x_start); in store_image_block()
/third_party/vk-gl-cts/external/openglcts/modules/glesext/geometry_shader/
H A DesextcGeometryShaderRendering.cpp1732 int x_start = 0; in verify() local
1742 x_start = 1 /* px */; in verify()
1748 x_start = 5 /* px */; in verify()
1754 x_start = 5 /* px */; in verify()
1760 x_start = 1 /* px */; in verify()
1775 x = x_start + n_point * 7 /* pixel block size */; in verify()
1783 x = x_start + index * 7 /* pixel block size */; in verify()
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_fs_visitor.cpp473 const fs_reg x_start = brw_vec1_grf(coef_payload.nr, 2); in emit_interpolation_setup_gfx6() local
482 abld.ADD(float_pixel_x, this->pixel_x, negate(x_start)); in emit_interpolation_setup_gfx6()
/third_party/backends/backend/
H A Dcanon_lide70-common.c2926 long x_start; in do_scan() local
2974 x_start = left_edge + chndl->x1 * chndl->val[opt_resolution].w / 600; in do_scan()
2977 x_start = left_edge + chndl->x1; in do_scan()
2979 x_end = x_start + (width); in do_scan()
2982 chndl->value_08 = (x_start >> 8) & 0xff; in do_scan()
2983 chndl->value_09 = (x_start) & 0xff; in do_scan()
/third_party/skia/third_party/externals/libwebp/src/mux/
H A Danim_encode.c718 const int x_start = (rect->x_offset_ + block_size) & ~(block_size - 1); in FlattenSimilarBlocks() local
725 for (i = x_start; i < x_end; i += block_size) { in FlattenSimilarBlocks()

Completed in 24 milliseconds