Searched refs:dstbuf (Results 1 - 9 of 9) sorted by relevance

/external/pixman/test/
H A Dscaling-crash-test.c34 uint32_t * dstbuf; local
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);
89 if (dstbuf[i] != 0xCCCCCCCC && dstbuf[i] != 0x33333333)
97 free (dstbuf);
H A Daffine-test.c47 uint32_t * dstbuf; local
78 dstbuf = (uint32_t *)malloc (dst_stride * dst_height);
81 prng_randmemset (dstbuf, dst_stride * dst_height, 0);
93 dst_fmt, dst_width, dst_height, dstbuf, dst_stride);
280 dstbuf[i] &= 0xFFFFFF;
292 printf ("%02X ", *((uint8_t *)dstbuf + i * dst_stride + j));
301 crc32 = compute_crc32 (0, dstbuf, dst_stride * dst_height);
303 free (dstbuf);
H A Dscaling-test.c78 uint32_t * dstbuf; local
141 dstbuf = (uint32_t *)malloc (dst_stride * dst_height);
145 prng_randmemset (dstbuf, dst_stride * dst_height, 0);
157 dst_fmt, dst_width, dst_height, dstbuf, dst_stride);
347 dstbuf[i] &= 0xFFFFFF;
359 printf ("%02X ", *((uint8_t *)dstbuf + i * dst_stride + j));
369 crc32 = compute_crc32 (0, dstbuf, dst_stride * dst_height);
372 free (dstbuf);
H A Dblitters-test.c238 uint32_t *dstbuf, *srcbuf, *maskbuf; local
285 dstbuf = pixman_image_get_data (dst_img);
369 printf ("%02X ", *((uint8_t *)dstbuf + i * dst_stride + j));
/external/opencv/cxcore/src/
H A Dcxlogic.cpp192 CvMat dstbuf, *tdst; local
286 dstbuf = cvMat( dy, size.width, type );
288 dstbuf.step = cvAlign( dstbuf.step, 8 );
289 buf_size = dstbuf.step ? dstbuf.step*dy : size.width*elem_size;
297 dstbuf.data.ptr = buffer;
298 tdst = &dstbuf;
356 CvMat dstbuf, *tdst; local
453 dstbuf
[all...]
H A Dcxarithm.cpp289 CvMat dstbuf, *tdst; local
442 dstbuf = cvMat( dy, size.width, type );
444 dstbuf.step = cvAlign( dstbuf.step, 8 );
445 buf_size = dstbuf.step ? dstbuf.step*dy : size.width*elem_size;
453 dstbuf.data.ptr = buffer;
454 tdst = &dstbuf;
540 CvMat dstbuf, *tdst; local
686 dstbuf
765 CvMat dstbuf, *tdst; local
1012 CvMat dstbuf, *tdst; local
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_RLEaccel.c784 Uint8 *dstbuf, SDL_Rect *srcrect, unsigned alpha)
794 dstbuf -= left * bpp; \
815 do_blit(dstbuf + startcol * bpp, srcbuf + start * bpp, \
825 dstbuf += dst->pitch; \
843 Uint8 *dstbuf; local
859 dstbuf = (Uint8 *)dst->pixels
903 RLEClipBlit(w, srcbuf, dst, dstbuf, srcrect, alpha);
917 do_blit(dstbuf + ofs * bpp, srcbuf, run, bpp, alpha); \
924 dstbuf += dst->pitch; \
1016 Uint8 *dstbuf, SDL_Rec
783 RLEClipBlit(int w, Uint8 *srcbuf, SDL_Surface *dst, Uint8 *dstbuf, SDL_Rect *srcrect, unsigned alpha) argument
1015 RLEAlphaClipBlit(int w, Uint8 *srcbuf, SDL_Surface *dst, Uint8 *dstbuf, SDL_Rect *srcrect) argument
1112 Uint8 *srcbuf, *dstbuf; local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/
H A Dvbo_split_copy.c87 GLubyte *dstbuf; member in struct:copy_context
88 GLubyte *dstptr; /**< dstptr == dstbuf + dstelt_max * vertsize */
214 copy->dstptr = copy->dstbuf;
292 assert(copy->dstptr == (copy->dstbuf +
512 copy->dstbuf = malloc(copy->dstbuf_size * copy->vertex_size);
513 copy->dstptr = copy->dstbuf;
526 dst->Ptr = copy->dstbuf + offset;
568 free(copy->dstbuf);
/external/mesa3d/src/mesa/vbo/
H A Dvbo_split_copy.c87 GLubyte *dstbuf; member in struct:copy_context
88 GLubyte *dstptr; /**< dstptr == dstbuf + dstelt_max * vertsize */
214 copy->dstptr = copy->dstbuf;
292 assert(copy->dstptr == (copy->dstbuf +
512 copy->dstbuf = malloc(copy->dstbuf_size * copy->vertex_size);
513 copy->dstptr = copy->dstbuf;
526 dst->Ptr = copy->dstbuf + offset;
568 free(copy->dstbuf);

Completed in 192 milliseconds