HomeSort by relevance Sort by last modified time
    Searched defs:srcbuf (Results 1 - 7 of 7) sorted by null

  /external/pixman/test/
scaling-crash-test.c 33 uint32_t * srcbuf; local
55 srcbuf = (uint32_t *)malloc ((src_width + 10) * (src_height + 10) * 4);
58 memset (srcbuf, 0x88, src_width * src_height * 4);
63 srcbuf + (src_width + 10) * 5 + 5, (src_width + 10) * 4);
96 free (srcbuf);
affine-test.c 46 uint32_t * srcbuf; local
77 srcbuf = (uint32_t *)malloc (src_stride * src_height);
80 prng_randmemset (srcbuf, src_stride * src_height, 0);
90 src_fmt, src_width, src_height, srcbuf, src_stride);
302 free (srcbuf);
blitters-test.c 238 uint32_t *dstbuf, *srcbuf, *maskbuf; local
286 srcbuf = pixman_image_get_data (src_img);
307 srcbuf,
311 maskbuf = srcbuf;
381 if (srcbuf == maskbuf)
scaling-test.c 77 uint32_t * srcbuf; local
139 srcbuf = (uint32_t *)malloc (src_stride * src_height);
143 prng_randmemset (srcbuf, src_stride * src_height, 0);
151 src_fmt, src_width, src_height, srcbuf, src_stride);
370 free (srcbuf);
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_denoiser.c 354 const uint8_t *srcbuf = src.y_buffer; local
360 vpx_memcpy(destbuf, srcbuf, dest.y_width);
362 srcbuf += src.y_stride;
  /external/chromium_org/third_party/libjpeg_turbo/
tjbench.c 89 int decomptest(unsigned char *srcbuf, unsigned char **jpegbuf,
198 if(srcbuf && sf.num==1 && sf.denom==1)
211 int y=(int)((double)srcbuf[rindex]*0.299
212 + (double)srcbuf[gindex]*0.587
213 + (double)srcbuf[bindex]*0.114 + 0.5);
226 =abs(dstbuf[pitch*row+col]-srcbuf[pitch*row+col]);
242 void dotestyuv(unsigned char *srcbuf, int w, int h, int subsamp,
268 if(tjEncodeYUV2(handle, srcbuf, w, 0, h, pf, dstbuf, subsamp, flags)==-1)
274 if(tjEncodeYUV2(handle, srcbuf, w, 0, h, pf, dstbuf, subsamp, flags)==-1)
318 void dotest(unsigned char *srcbuf, int w, int h, int subsamp, int jpegqual
467 unsigned char **jpegbuf=NULL, *srcbuf=NULL; local
724 unsigned char *srcbuf=NULL; int w, h, i, j; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_RLEaccel.c 783 static void RLEClipBlit(int w, Uint8 *srcbuf, SDL_Surface *dst,
797 ofs += *(Type *)srcbuf; \
798 run = ((Type *)srcbuf)[1]; \
799 srcbuf += 2 * sizeof(Type); \
815 do_blit(dstbuf + startcol * bpp, srcbuf + start * bpp, \
819 srcbuf += run * bpp; \
844 Uint8 *srcbuf; local
861 srcbuf = (Uint8 *)src->map->sw_data->aux_data;
872 ofs += *(Type *)srcbuf; \
873 run = ((Type *)srcbuf)[1];
1112 Uint8 *srcbuf, *dstbuf; local
1648 Uint8 *srcbuf, *lastline; local
1825 Uint8 *srcbuf; local
    [all...]

Completed in 6071 milliseconds