HomeSort by: relevance | last modified time | path
    Searched refs:dst_height (Results 1 - 25 of 66) sorted by relevancy

1 2 3

  /xsrc/external/mit/pixman/dist/test/
affine-test.c 34 int dst_width, dst_height; local
60 dst_height = prng_rand_n (MAX_DST_HEIGHT) + 1;
73 dst_y = -(dst_height / 4) + prng_rand_n (dst_height * 3 / 2);
75 h = prng_rand_n (dst_height * 3 / 2 - dst_y);
78 dstbuf = (uint32_t *)malloc (dst_stride * dst_height);
81 prng_randmemset (dstbuf, dst_stride * dst_height, 0);
91 dstbuf += (dst_stride / 4) * (dst_height - 1);
105 dst_fmt, dst_width, dst_height, dstbuf, dst_stride);
225 printf ("src_width=%d, src_height=%d, dst_width=%d, dst_height=%d\n"
    [all...]
composite-traps-test.c 54 int dst_width, dst_height; local
156 dst_height = prng_rand_n (MAX_DST_HEIGHT) + 1;
160 dst_bits = (uint32_t *)make_random_bytes (dst_stride * dst_height);
164 dst_bits += (dst_stride / 4) * (dst_height - 1);
169 dst_y = -(dst_height / 4) + prng_rand_n (dst_height * 3 / 2);
172 dst_format, dst_width, dst_height, dst_bits, dst_stride);
208 clip_boxes[i].y1 = prng_rand_n (dst_height);
212 clip_boxes[i].y1 + prng_rand_n (dst_height - clip_boxes[i].y1);
235 dst_bits += (dst_stride / 4) * (dst_height - 1)
    [all...]
scaling-test.c 60 int dst_width, dst_height; local
114 dst_height = prng_rand_n (MAX_DST_HEIGHT) + 1;
135 dst_y = -(dst_height / 4) + prng_rand_n (dst_height * 3 / 2);
137 h = prng_rand_n (dst_height * 3 / 2 - dst_y);
141 dstbuf = (uint32_t *)malloc (dst_stride * dst_height);
145 prng_randmemset (dstbuf, dst_stride * dst_height, 0);
165 dstbuf += (dst_stride / 4) * (dst_height - 1);
176 dst_fmt, dst_width, dst_height, dstbuf, dst_stride);
322 clip_boxes[i].y1 = prng_rand_n (dst_height);
    [all...]
scaling-crash-test.c 20 int32_t dst_height,
56 dstbuf = (uint32_t *)malloc (dst_width * dst_height * 4);
59 memset (dstbuf, 0x33, dst_width * dst_height * 4);
71 PIXMAN_a8r8g8b8, dst_width, dst_height, dstbuf, dst_width * 4);
82 src_x, src_y, 0, 0, 0, 0, dst_width, dst_height);
87 for (i = 0; i < dst_width * dst_height; i++)
blitters-test.c 239 int dst_width, dst_height; local
291 dst_height = pixman_image_get_height (dst_img);
299 dst_y = prng_rand_n (dst_height);
345 h = prng_rand_n (dst_height - dst_y + 1);
353 printf ("src_width=%d, src_height=%d, dst_width=%d, dst_height=%d\n",
354 src_width, src_height, dst_width, dst_height);
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/r200/
r200_blit.h 49 unsigned dst_height,
r200_blit.c 465 * @param[in] dst_height destination image height
486 unsigned dst_height,
512 if (reg_height + dst_y_offset > dst_height)
513 reg_height = dst_height - dst_y_offset;
549 emit_cb_setup(r200, dst_bo, dst_offset, dst_mesaformat, dst_pitch, dst_width, dst_height);
  /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/radeon/
radeon_blit.h 49 unsigned dst_height,
radeon_blit.c 317 * @param[in] dst_height destination image height
338 unsigned dst_height,
364 if (reg_height + dst_y_offset > dst_height)
365 reg_height = dst_height - dst_y_offset;
401 emit_cb_setup(r100, dst_bo, dst_offset, dst_mesaformat, dst_pitch, dst_width, dst_height);
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/r200/
r200_blit.h 49 unsigned dst_height,
r200_blit.c 475 * @param[in] dst_height destination image height
496 unsigned dst_height,
522 if (reg_height + dst_y_offset > dst_height)
523 reg_height = dst_height - dst_y_offset;
559 emit_cb_setup(r200, dst_bo, dst_offset, dst_mesaformat, dst_pitch, dst_width, dst_height);
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/radeon/
radeon_blit.h 49 unsigned dst_height,
radeon_blit.c 326 * @param[in] dst_height destination image height
347 unsigned dst_height,
373 if (reg_height + dst_y_offset > dst_height)
374 reg_height = dst_height - dst_y_offset;
410 emit_cb_setup(r100, dst_bo, dst_offset, dst_mesaformat, dst_pitch, dst_width, dst_height);
  /xsrc/external/mit/xf86-video-geode/dist/src/cim/
cim_rtns.h 164 unsigned long dst_width, unsigned long dst_height,
167 unsigned long dst_width, unsigned long dst_height,
259 unsigned long dst_width, unsigned long dst_height,
cim_df.c 321 unsigned long dst_width, unsigned long dst_height,
357 dst_height = dst_height * (((0x4000 * src) / scale) + 1);
358 dst_height /= src;
370 ((flags & DF_SCALEFLAG_CHANGEY) && dst_height < (src_height >> 2))) {
411 if (dst_height < (src_height >> 1)) {
414 if (dst_height == (src_height >> 2))
417 downscale |= (((src_height >> 1) << 14) / dst_height) << 18;
423 WRITE_VID32(DF_VIDEO_YSCALE, ((0x10000 * src_height) / dst_height));
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r600/
r600_blit.c 683 unsigned dst_width, dst_height, src_width0, src_height0, src_widthFL, src_heightFL; local
708 dst_height = u_minify(dst->height0, dst_level);
728 dst_height = util_format_get_nblocksy(dst->format, dst_height);
797 dst_width, dst_height);
829 unsigned dst_height = u_minify(info->dst.resource->height0, info->dst.level); local
852 dst_height == info->src.resource->height0 &&
856 info->dst.box.height == dst_height &&
861 info->src.box.height == dst_height &&
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r600/
r600_blit.c 681 unsigned dst_width, dst_height, src_width0, src_height0, src_widthFL, src_heightFL; local
706 dst_height = u_minify(dst->height0, dst_level);
726 dst_height = util_format_get_nblocksy(dst->format, dst_height);
795 dst_width, dst_height);
827 unsigned dst_height = u_minify(info->dst.resource->height0, info->dst.level); local
850 dst_height == info->src.resource->height0 &&
854 info->dst.box.height == dst_height &&
859 info->src.box.height == dst_height &&
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/
si_blit.c 912 unsigned dst_width, dst_height, src_width0, src_height0; local
943 dst_height = u_minify(dst->height0, dst_level);
962 dst_height = util_format_get_nblocksy(dst->format, dst_height);
1039 dst_height);
1104 unsigned dst_height = u_minify(info->dst.resource->height0, info->dst.level); local
1130 dst_width == info->src.resource->width0 && dst_height == info->src.resource->height0 &&
1132 info->dst.box.height == dst_height && info->dst.box.depth == 1 && info->src.box.x == 0 &&
1134 info->src.box.height == dst_height && info->src.box.depth == 1 && !dst->surface.is_linear &&
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/radeonsi/
si_blit.c 909 unsigned dst_width, dst_height, src_width0, src_height0; local
938 dst_height = u_minify(dst->height0, dst_level);
958 dst_height = util_format_get_nblocksy(dst->format, dst_height);
1040 dst_width, dst_height);
1091 unsigned dst_height = u_minify(info->dst.resource->height0, info->dst.level); local
1119 dst_height == info->src.resource->height0 &&
1123 info->dst.box.height == dst_height &&
1128 info->src.box.height == dst_height &&
  /xsrc/external/mit/xf86-video-intel/dist/src/uxa/
intel_video_overlay.c 231 request.dst_height = dstBox->y2 - dstBox->y1;
236 if (request.dst_height > 1) {
237 scale = ((float)request.dst_height - 1) / ((float)drw_h - 1);
  /xsrc/external/mit/xf86-video-intel-2014/dist/src/uxa/
intel_video_overlay.c 231 request.dst_height = dstBox->y2 - dstBox->y1;
236 if (request.dst_height > 1) {
237 scale = ((float)request.dst_height - 1) / ((float)drw_h - 1);
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r300/
r300_blit.c 689 unsigned dst_height = u_minify(info->dst.resource->height0, info->dst.level); local
699 dst_height == info->src.resource->height0 &&
703 info->dst.box.height == dst_height &&
707 info->src.box.height == dst_height &&
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r300/
r300_blit.c 687 unsigned dst_height = u_minify(info->dst.resource->height0, info->dst.level); local
697 dst_height == info->src.resource->height0 &&
701 info->dst.box.height == dst_height &&
705 info->src.box.height == dst_height &&
  /xsrc/external/mit/xf86-video-intel/dist/src/sna/
sna_video_overlay.c 401 request.dst_height = dstBox->y2 - dstBox->y1;
406 request.dst_width, request.dst_height));
411 if (request.dst_height > 1) {
412 scale = ((float)request.dst_height - 1) / ((float)drw_h - 1);
  /xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/
sna_video_overlay.c 401 request.dst_height = dstBox->y2 - dstBox->y1;
406 request.dst_width, request.dst_height));
411 if (request.dst_height > 1) {
412 scale = ((float)request.dst_height - 1) / ((float)drw_h - 1);

Completed in 65 milliseconds

1 2 3