Home
last modified time | relevance | path

Searched refs:dst_y (Results 1 – 25 of 96) sorted by relevance

1234

/third_party/ffmpeg/libavcodec/
Dsheervideo.c46 uint16_t *dst_y, *dst_u, *dst_v, *dst_a; in decode_ca4i() local
50 dst_y = (uint16_t *)p->data[0]; in decode_ca4i()
58 dst_y[x] = get_bits(gb, 10); in decode_ca4i()
74 dst_y[x] = pred[0] = (y + pred[0]) & 0x3ff; in decode_ca4i()
80 dst_y += p->linesize[0] / 2; in decode_ca4i()
90 uint16_t *dst_y, *dst_u, *dst_v, *dst_a; in decode_ca4p() local
94 dst_y = (uint16_t *)p->data[0]; in decode_ca4p()
101 dst_y[x] = get_bits(gb, 10); in decode_ca4p()
117 dst_y[x] = pred[0] = (y + pred[0]) & 0x3ff; in decode_ca4p()
123 dst_y += p->linesize[0] / 2; in decode_ca4p()
[all …]
/third_party/libdrm/exynos/
Dexynos_fimg2d.c501 unsigned int dst_x, unsigned dst_y, unsigned int w, in g2d_copy() argument
519 if (dst_y + dst->height > h) in g2d_copy()
520 dst_h = dst->height - dst_y; in g2d_copy()
551 pt.data.y = dst_y; in g2d_copy()
554 pt.data.y = dst_y + h; in g2d_copy()
584 unsigned int dst_x, unsigned dst_y, unsigned int w, in g2d_move() argument
603 if (dst_y + img->height > h) in g2d_move()
604 dst_h = img->height - dst_y; in g2d_move()
633 if (dst_y >= src_y) in g2d_move()
646 pt.data.y = dst_y; in g2d_move()
[all …]
Dexynos_fimg2d.h313 unsigned int src_y, unsigned int dst_x, unsigned int dst_y,
317 unsigned dst_y, unsigned int w, unsigned int h);
322 unsigned int dst_y, unsigned int dst_w,
326 unsigned int src_y, unsigned int dst_x, unsigned int dst_y,
331 unsigned int dst_y, unsigned int dst_w, unsigned int dst_h,
/third_party/mindspore/mindspore/ccsrc/backend/kernel_compiler/gpu/cuda_impl/
Dmatrix_split_impl.cu25 size_t dst_y = (pointIdx - batchIdx * split_dim * split_dim) % split_dim; in MatrixSplitKernel() local
26 size_t src_coordinate = (batchIdx * split_dim + dst_x) * dim + batchIdx * split_dim + dst_y; in MatrixSplitKernel()
37 size_t dst_y = (pointIdx - batchIdx * split_dim * split_dim) % split_dim; in MatrixSplitKernel() local
38 size_t src_coordinate = (batchIdx * split_dim + dst_x) * dim + batchIdx * split_dim + dst_y; in MatrixSplitKernel()
43 if (dst_x < res_dim && dst_y < res_dim) { in MatrixSplitKernel()
45 } else if (dst_x == dst_y) { in MatrixSplitKernel()
Dconvert_gradient_impl.cu27 size_t dst_y = (pointIdx - dst_batchIdx * height_h * height_w) % height_w; in ConvertGradientKernel() local
28 …c_coordinate = dst_batchIdxX * height_h * width + dst_x * width + dst_batchIdxY * height_w + dst_y; in ConvertGradientKernel()
41 size_t dst_y = (pointIdx - dst_batchIdx * height_h * height_w) % height_w; in ConvertGradientBackKernel() local
42 …c_coordinate = dst_batchIdxX * height_h * width + dst_x * width + dst_batchIdxY * height_w + dst_y; in ConvertGradientBackKernel()
56 size_t dst_y = (pointIdx - dst_batchIdx * height_h * height_w) % height_w; in ConvertGradientBackKernel() local
58 size_t src_y = dst_batchIdxY * height_w + dst_y; in ConvertGradientBackKernel()
Deye_impl.cu24 size_t dst_y = (pointIdx - batchIdx * dim * dim) % dim; in EyeKernel() local
25 if (dst_x == dst_y) { in EyeKernel()
/third_party/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_copy_image.c42 int dst_x, int dst_y, int dst_z, unsigned dst_level, in copy_miptrees() argument
56 dst_mt, dst_level, dst_z, dst_x, dst_y, in copy_miptrees()
64 src_x, src_y, dst_x, dst_y, in copy_miptrees()
75 int dst_x, int dst_y, int dst_z, in brw_copy_image_sub_data() argument
116 dst_mt, dst_x, dst_y, dst_z, dst_level, in brw_copy_image_sub_data()
130 dst_mt->stencil_mt, dst_x, dst_y, dst_z, dst_level, in brw_copy_image_sub_data()
Dbrw_blit.c263 GLshort dst_x, GLshort dst_y, in emit_copy_blit() argument
269 int dst_y2 = dst_y + h; in emit_copy_blit()
294 dst_buffer, dst_pitch, dst_offset, dst_x, dst_y, w, h); in emit_copy_blit()
350 if (dst_y2 <= dst_y || dst_x2 <= dst_x) in emit_copy_blit()
354 assert(dst_y < dst_y2); in emit_copy_blit()
359 OUT_BATCH(SET_FIELD(dst_y, BLT_Y) | SET_FIELD(dst_x, BLT_X)); in emit_copy_blit()
386 uint32_t dst_x, uint32_t dst_y, in emit_miptree_blit() argument
433 dst_x + chunk_x, dst_y + chunk_y, in emit_miptree_blit()
481 uint32_t dst_x, uint32_t dst_y, bool dst_flip, in brw_miptree_blit() argument
523 dst_y = minify(h0, dst_level - dst_mt->first_level) - dst_y - height; in brw_miptree_blit()
[all …]
Dbrw_blit.h39 uint32_t dst_x, uint32_t dst_y, bool dst_flip,
49 uint32_t dst_x, uint32_t dst_y,
/third_party/mesa3d/src/gallium/drivers/i915/
Di915_blit.c83 short src_x, short src_y, short dst_x, short dst_y, short w, in i915_copy_blit() argument
87 int dst_y2 = dst_y + h; in i915_copy_blit()
94 dst_buffer, dst_pitch, dst_offset, dst_x, dst_y, w, h); in i915_copy_blit()
117 if (dst_y2 < dst_y || dst_x2 < dst_x) { in i915_copy_blit()
133 OUT_BATCH((dst_y << 16) | dst_x); in i915_copy_blit()
/third_party/weston/libweston/
Dvertex-clipping.c197 float *dst_x, float *dst_y) in clip_context_prepare() argument
202 ctx->vertices.y = dst_y; in clip_context_prepare()
207 float *dst_x, float *dst_y) in clip_polygon_left() argument
215 clip_context_prepare(ctx, src, dst_x, dst_y); in clip_polygon_left()
226 float *dst_x, float *dst_y) in clip_polygon_right() argument
234 clip_context_prepare(ctx, src, dst_x, dst_y); in clip_polygon_right()
245 float *dst_x, float *dst_y) in clip_polygon_top() argument
253 clip_context_prepare(ctx, src, dst_x, dst_y); in clip_polygon_top()
264 float *dst_x, float *dst_y) in clip_polygon_bottom() argument
272 clip_context_prepare(ctx, src, dst_x, dst_y); in clip_polygon_bottom()
/third_party/mesa3d/src/mesa/drivers/dri/i915/
Dintel_blit.c89 GLshort dst_x, GLshort dst_y, in emit_copy_blit() argument
94 int dst_y2 = dst_y + h; in emit_copy_blit()
132 dst_buffer, dst_pitch, dst_offset, dst_x, dst_y, w, h); in emit_copy_blit()
173 if (dst_y2 <= dst_y || dst_x2 <= dst_x) { in emit_copy_blit()
178 assert(dst_y < dst_y2); in emit_copy_blit()
184 OUT_BATCH((dst_y << 16) | dst_x); in emit_copy_blit()
224 uint32_t dst_x, uint32_t dst_y, bool dst_flip, in intel_miptree_blit() argument
280 dst_y = dst_mt->level[dst_level].height - dst_y - height; in intel_miptree_blit()
296 dst_y += dst_image_y; in intel_miptree_blit()
307 dst_x, dst_y, in intel_miptree_blit()
[all …]
/third_party/mesa3d/src/gallium/drivers/crocus/
Dcrocus_blt.c152 uint16_t dst_x, uint16_t dst_y, in emit_copy_blt() argument
158 int dst_y2 = dst_y + h; in emit_copy_blt()
164 dst, dst_pitch, dst_offset, dst_x, dst_y, w, h); in emit_copy_blt()
220 xyblt.DestinationY1Coordinate = dst_y; in emit_copy_blt()
237 unsigned dst_x, unsigned dst_y, in crocus_emit_blt() argument
284 assert(dst_y % bh == 0); in crocus_emit_blt()
286 dst_y /= (int)bh; in crocus_emit_blt()
291 dst_y += dst_image_y; in crocus_emit_blt()
348 dst_x + chunk_x, dst_y + chunk_y, 0, 0, in crocus_emit_blt()
/third_party/mesa3d/src/gallium/auxiliary/util/
Du_surface.h51 unsigned dst_x, unsigned dst_y, unsigned dst_z,
59 unsigned dst_stride, unsigned dst_x, unsigned dst_y,
80 unsigned dst_x, unsigned dst_y, unsigned dst_z,
/third_party/pixman/test/
Daffine-test.c37 int dst_x, dst_y; in test_composite() local
73 dst_y = -(dst_height / 4) + prng_rand_n (dst_height * 3 / 2); in test_composite()
75 h = prng_rand_n (dst_height * 3 / 2 - dst_y); in test_composite()
228 src_x, src_y, dst_x, dst_y); in test_composite()
286 src_x, src_y, 0, 0, dst_x, dst_y, w, h); in test_composite()
Dblitters-test.c242 int dst_x, dst_y; in test_composite() local
299 dst_y = prng_rand_n (dst_height); in test_composite()
345 h = prng_rand_n (dst_height - dst_y + 1); in test_composite()
356 src_x, src_y, dst_x, dst_y); in test_composite()
363 src_x, src_y, mask_x, mask_y, dst_x, dst_y, w, h); in test_composite()
Dscaling-test.c64 int dst_x, dst_y; in test_composite() local
135 dst_y = -(dst_height / 4) + prng_rand_n (dst_height * 3 / 2); in test_composite()
137 h = prng_rand_n (dst_height * 3 / 2 - dst_y); in test_composite()
375 dst_width, dst_height, dst_x, dst_y); in test_composite()
380 src_x, src_y, mask_x, mask_y, dst_x, dst_y, w, h); in test_composite()
/third_party/wayland-ivi-extension/screen-info/module/
Dscreen-info.h4 int dst_y; member
19 int dst_y; member
/third_party/flutter/skia/third_party/externals/libwebp/src/enc/
Dpicture_csp_enc.c399 uint8_t* dst_y = picture->y; in ConvertWRGBToYUV() local
414 dst_y[i] = ConvertRGBToY(r, g, b); in ConvertWRGBToYUV()
418 dst_y += picture->y_stride; in ConvertWRGBToYUV()
754 uint8_t* const dst_y, in ConvertRowToY() argument
759 dst_y[i] = RGBToY(r_ptr[j], g_ptr[j], b_ptr[j], rg); in ConvertRowToY()
887 uint8_t* dst_y = picture->y; in ImportYUVAFromRGBA() local
909 WebPConvertRGB24ToY(r_ptr, dst_y, width); in ImportYUVAFromRGBA()
911 dst_y + picture->y_stride, width); in ImportYUVAFromRGBA()
913 WebPConvertBGR24ToY(b_ptr, dst_y, width); in ImportYUVAFromRGBA()
915 dst_y + picture->y_stride, width); in ImportYUVAFromRGBA()
[all …]
/third_party/skia/third_party/externals/libwebp/src/enc/
Dpicture_csp_enc.c403 uint8_t* dst_y = picture->y; in ConvertWRGBToYUV() local
418 dst_y[i] = ConvertRGBToY(r, g, b); in ConvertWRGBToYUV()
422 dst_y += picture->y_stride; in ConvertWRGBToYUV()
758 uint8_t* const dst_y, in ConvertRowToY() argument
763 dst_y[i] = RGBToY(r_ptr[j], g_ptr[j], b_ptr[j], rg); in ConvertRowToY()
891 uint8_t* dst_y = picture->y; in ImportYUVAFromRGBA() local
913 WebPConvertRGB24ToY(r_ptr, dst_y, width); in ImportYUVAFromRGBA()
915 dst_y + picture->y_stride, width); in ImportYUVAFromRGBA()
917 WebPConvertBGR24ToY(b_ptr, dst_y, width); in ImportYUVAFromRGBA()
919 dst_y + picture->y_stride, width); in ImportYUVAFromRGBA()
[all …]
/third_party/skia/third_party/externals/libwebp/src/utils/
Drescaler_utils.h43 int src_y, dst_y; // row counters for input and output member
87 return (rescaler->dst_y >= rescaler->dst_height); in WebPRescalerOutputDone()
/third_party/flutter/skia/third_party/externals/libwebp/src/utils/
Drescaler_utils.h43 int src_y, dst_y; // row counters for input and output member
86 return (rescaler->dst_y >= rescaler->dst_height); in WebPRescalerOutputDone()
/third_party/libdrm/tests/exynos/
Dexynos_fimg2d_test.c247 unsigned int src_x, src_y, dst_x, dst_y, img_w, img_h; in g2d_copy_test() local
260 dst_y = 0; in g2d_copy_test()
306 ret = g2d_copy(ctx, &src_img, &dst_img, src_x, src_y, dst_x, dst_y, in g2d_copy_test()
543 unsigned int src_x, src_y, dst_x, dst_y, img_w, img_h; in g2d_blend_test() local
556 dst_y = 0; in g2d_blend_test()
609 ret = g2d_solid_fill(ctx, &dst_img, dst_x, dst_y, img_w, img_h); in g2d_blend_test()
644 unsigned int src_x, src_y, dst_x, dst_y, img_w, img_h; in g2d_checkerboard_test() local
657 dst_y = 0; in g2d_checkerboard_test()
702 ret = g2d_copy(ctx, &src_img, &dst_img, src_x, src_y, dst_x, dst_y, in g2d_checkerboard_test()
/third_party/ffmpeg/libavfilter/
Ddrawutils.h86 int dst_x, int dst_y, int src_x, int src_y,
97 int dst_x, int dst_y, int w, int h);
/third_party/mesa3d/src/gallium/drivers/svga/
Dsvga_surface.h115 unsigned dst_x, unsigned dst_y, unsigned dst_z,
124 unsigned dst_x, unsigned dst_y, unsigned dst_z,

1234