Home
last modified time | relevance | path

Searched refs:dst_w (Results 1 – 25 of 35) sorted by relevance

12

/third_party/flutter/skia/third_party/externals/sdl/src/video/
DSDL_stretch.c70 generate_rowbytes(int src_w, int dst_w, int bpp) in generate_rowbytes() argument
76 int dst_w; in generate_rowbytes() member
86 if ((src_w == last.src_w) && (dst_w == last.dst_w) && (bpp == last.bpp)) { in generate_rowbytes()
91 last.dst_w = dst_w; in generate_rowbytes()
114 inc = (src_w << 16) / dst_w; in generate_rowbytes()
117 for (i = 0; i < dst_w; ++i) { in generate_rowbytes()
152 static void name(type *src, int src_w, type *dst, int dst_w) \
159 inc = (src_w << 16) / dst_w; \
160 for ( i=dst_w; i>0; --i ) { \
177 copy_row3(Uint8 * src, int src_w, Uint8 * dst, int dst_w) in DEFINE_COPY_ROW()
[all …]
DSDL_blit_auto.c39 incx = (info->src_w << 16) / info->dst_w; in SDL_Blit_RGB888_RGB888_Scale()
44 int n = info->dst_w; in SDL_Blit_RGB888_RGB888_Scale()
79 int n = info->dst_w; in SDL_Blit_RGB888_RGB888_Blend()
134 incx = (info->src_w << 16) / info->dst_w; in SDL_Blit_RGB888_RGB888_Blend_Scale()
139 int n = info->dst_w; in SDL_Blit_RGB888_RGB888_Blend_Scale()
205 int n = info->dst_w; in SDL_Blit_RGB888_RGB888_Modulate()
239 incx = (info->src_w << 16) / info->dst_w; in SDL_Blit_RGB888_RGB888_Modulate_Scale()
244 int n = info->dst_w; in SDL_Blit_RGB888_RGB888_Modulate_Scale()
291 int n = info->dst_w; in SDL_Blit_RGB888_RGB888_Modulate_Blend()
358 incx = (info->src_w << 16) / info->dst_w; in SDL_Blit_RGB888_RGB888_Modulate_Blend_Scale()
[all …]
DSDL_blit_1.c41 width = info->dst_w; in Blit1to1()
92 width = info->dst_w; in Blit1to2()
199 width = info->dst_w; in Blit1to3()
248 width = info->dst_w; in Blit1to4()
287 int width = info->dst_w; in Blit1to1Key()
334 int width = info->dst_w; in Blit1to2Key()
366 int width = info->dst_w; in Blit1to3Key()
399 int width = info->dst_w; in Blit1to4Key()
431 int width = info->dst_w; in Blit1toNAlpha()
471 int width = info->dst_w; in Blit1toNAlphaKey()
DSDL_blit_0.c37 width = info->dst_w; in BlitBto1()
93 width = info->dst_w; in BlitBto2()
129 width = info->dst_w; in BlitBto3()
169 width = info->dst_w; in BlitBto4()
199 int width = info->dst_w; in BlitBto1Key()
252 int width = info->dst_w; in BlitBto2Key()
287 int width = info->dst_w; in BlitBto3Key()
321 int width = info->dst_w; in BlitBto4Key()
356 int width = info->dst_w; in BlitBtoNAlpha()
401 int width = info->dst_w; in BlitBtoNAlphaKey()
DSDL_blit_A.c32 int width = info->dst_w; in BlitNto1SurfaceAlpha()
79 int width = info->dst_w; in BlitNto1PixelAlpha()
125 int width = info->dst_w; in BlitNto1SurfaceAlphaKey()
177 int width = info->dst_w; in BlitRGBtoRGBSurfaceAlpha128MMX()
241 int width = info->dst_w; in BlitRGBtoRGBSurfaceAlphaMMX()
330 int width = info->dst_w; in BlitRGBtoRGBPixelAlphaMMX()
396 int width = info->dst_w; in BlitRGBtoRGBSurfaceAlpha128()
425 int width = info->dst_w; in BlitRGBtoRGBSurfaceAlpha()
463 int width = info->dst_w; in BlitRGBtoRGBPixelAlpha()
517 int width = info->dst_w; in BlitRGBtoRGBPixelAlphaMMX3DNOW()
[all …]
DSDL_blit_N.c187 int width = info->dst_w; in Blit_RGB888_RGB565Altivec()
336 int width = info->dst_w; in Blit_RGB565_32Altivec()
483 int width = info->dst_w; in Blit_RGB555_32Altivec()
577 if (info->dst_w < 16) { in Blit32to32KeyAltivec()
630 int width = info->dst_w; in Blit32to32KeyAltivec()
703 int width = info->dst_w; in ConvertAltivec32to32_noprefetch()
786 int width = info->dst_w; in ConvertAltivec32to32_prefetch()
905 width = info->dst_w; in Blit_RGB888_index8()
1015 width = info->dst_w; in Blit_RGB101010_index8()
1132 width = info->dst_w; in Blit_RGB888_RGB555()
[all …]
DSDL_blit_slow.c55 incx = (info->src_w << 16) / info->dst_w; in SDL_Blit_Slow()
60 int n = info->dst_w; in SDL_Blit_Slow()
DSDL_surface.c665 int dst_w, dst_h; in SDL_UpperBlitScaled() local
684 dst_w = dst->w; in SDL_UpperBlitScaled()
687 dst_w = dstrect->w; in SDL_UpperBlitScaled()
691 if (dst_w == src_w && dst_h == src_h) { in SDL_UpperBlitScaled()
696 scaling_w = (double)dst_w / src_w; in SDL_UpperBlitScaled()
702 dst_x1 = dst_w - 1; in SDL_UpperBlitScaled()
707 dst_x1 = dst_x0 + dst_w - 1; in SDL_UpperBlitScaled()
DSDL_blit.c80 info->dst_w = dstrect->w; in SDL_SoftBlit()
84 info->dst_pitch - info->dst_w * info->dst_fmt->BytesPerPixel; in SDL_SoftBlit()
DSDL_blit_copy.c98 w = info->dst_w * info->dst_fmt->BytesPerPixel; in SDL_BlitCopy()
/third_party/libdrm/exynos/
Dexynos_fimg2d.c506 unsigned int src_w, src_h, dst_w, dst_h; in g2d_copy() local
515 dst_w = w; in g2d_copy()
518 dst_w = dst->width - dst_x; in g2d_copy()
522 w = MIN(src_w, dst_w); in g2d_copy()
590 unsigned int src_w, src_h, dst_w, dst_h; in g2d_move() local
599 dst_w = w; in g2d_move()
602 dst_w = img->width - dst_x; in g2d_move()
606 w = MIN(src_w, dst_w); in g2d_move()
684 unsigned int dst_y, unsigned int dst_w, in g2d_copy_with_scale() argument
696 if (src_w == dst_w && src_h == dst_h) in g2d_copy_with_scale()
[all …]
Dexynos_fimg2d.h322 unsigned int dst_y, unsigned int dst_w,
331 unsigned int dst_y, unsigned int dst_w, unsigned int dst_h,
/third_party/ffmpeg/doc/examples/
Dscaling_video.c56 int src_w = 320, src_h = 240, dst_w, dst_h; in main() local
76 if (av_parse_video_size(&dst_w, &dst_h, dst_size) < 0) { in main()
91 dst_w, dst_h, dst_pix_fmt, in main()
98 av_get_pix_fmt_name(dst_pix_fmt), dst_w, dst_h); in main()
112 dst_w, dst_h, dst_pix_fmt, 1)) < 0) { in main()
132 av_get_pix_fmt_name(dst_pix_fmt), dst_w, dst_h, dst_filename); in main()
/third_party/ffmpeg/libavfilter/
Dlswsutils.c23 int dst_w, int dst_h, enum AVPixelFormat dst_pix_fmt, in ff_scale_image() argument
30 dst_w, dst_h, dst_pix_fmt, in ff_scale_image()
37 av_get_pix_fmt_name(dst_pix_fmt), dst_w, dst_h); in ff_scale_image()
42 if ((ret = av_image_alloc(dst_data, dst_linesize, dst_w, dst_h, dst_pix_fmt, 16)) < 0) in ff_scale_image()
Dvf_overlay.c358 const int dst_w = dst->width; in blend_slice_packed_rgb() local
388 for (jmax = FFMIN(-x + dst_w, src_w); j < jmax; j++) { in blend_slice_packed_rgb()
440 … int dst_w, int dst_h, \
455 …int dst_wp = AV_CEIL_RSHIFT(dst_w, hsub); …
566 … int dst_w, int dst_h, \
590 …for (jmax = FFMIN(-x + dst_w, src_w); j < jmax; j++) { …
627 …const int dst_w = dst->width; …
630 …blend_plane_##depth##_##nbits##bits(ctx, dst, src, src_w, src_h, dst_w, dst_h, 0, 0, 0, …
633 …blend_plane_##depth##_##nbits##bits(ctx, dst, src, src_w, src_h, dst_w, dst_h, 1, hsub, vsub, …
636 …blend_plane_##depth##_##nbits##bits(ctx, dst, src, src_w, src_h, dst_w, dst_h, 2, hsub, vsub, …
[all …]
Ddrawutils.h104 int dst_w, int dst_h,
126 uint8_t *dst[], int dst_linesize[], int dst_w, int dst_h,
Dlswsutils.h33 int dst_w, int dst_h, enum AVPixelFormat dst_pix_fmt,
Ddrawutils.c353 int dst_w, int dst_h, in ff_blend_rectangle() argument
361 clip_interval(dst_w, &x0, &w, NULL); in ff_blend_rectangle()
529 uint8_t *dst[], int dst_linesize[], int dst_w, int dst_h, in ff_blend_mask() argument
538 clip_interval(dst_w, &x0, &mask_w, &xm0); in ff_blend_mask()
Dvf_histogram.c301 const int dst_w = AV_CEIL_RSHIFT(outlink->w, (is_chroma ? s->odesc->log2_chroma_w : 0)); in filter_frame() local
307 s->bg_color[k], dst_w); in filter_frame()
312 for (j = 0; j < dst_w; j++) in filter_frame()
/third_party/mesa3d/src/gallium/frontends/xa/
Dxa_yuv.c116 int dst_w, in xa_yuv_planar_blit() argument
127 if (dst_w == 0 || dst_h == 0) in xa_yuv_planar_blit()
140 scale_x = (float)src_w / (float)dst_w; in xa_yuv_planar_blit()
Dxa_context.h60 int dst_w,
Dxa_priv.h255 int dst_y, int dst_w, int dst_h,
/third_party/mesa3d/src/mesa/state_tracker/
Dst_cb_copyimage.c572 unsigned dst_w = src_w; in fallback_copy_image() local
577 dst_w = DIV_ROUND_UP(dst_w, src_blk_w); in fallback_copy_image()
580 dst_w *= dst_blk_w; in fallback_copy_image()
590 line_bytes = _mesa_format_row_stride(dst_image->TexFormat, dst_w); in fallback_copy_image()
595 dst_x, dst_y, dst_w, dst_h, in fallback_copy_image()
600 dst_x, dst_y, dst_w, dst_h, in fallback_copy_image()
/third_party/ffmpeg/tests/checkasm/
Dvideodsp.c50 #define check_emu_edge_size(type, src_w, src_h, dst_w, dst_h) \ argument
54 int bw = dst_w, bh = dst_h; \
/third_party/mesa3d/src/mesa/main/
Dcopyimage.c616 GLuint src_w, src_h, dst_w, dst_h; in _mesa_CopyImageSubData() local
645 &dstIntFormat, &dst_w, &dst_h, &dst_num_samples, in _mesa_CopyImageSubData()
775 GLuint src_w, src_h, dst_w, dst_h; in _mesa_CopyImageSubDataNV() local
803 &dstIntFormat, &dst_w, &dst_h, &dst_num_samples, in _mesa_CopyImageSubDataNV()

12