/external/pixman/test/ |
scaling-crash-test.c | 34 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);
|
affine-test.c | 47 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);
|
scaling-test.c | 78 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);
|
blitters-test.c | 238 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/ |
cxlogic.cpp | 192 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 = cvMat( dy, size.width, type ) [all...] |
cxarithm.cpp | 289 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 = cvMat( dy, size.width, type ) 765 CvMat dstbuf, *tdst; local 1012 CvMat dstbuf, *tdst; local [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/ |
SDL_RLEaccel.c | 784 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_Rect *srcrect 1112 Uint8 *srcbuf, *dstbuf; local [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/ |
vbo_split_copy.c | 87 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/ |
vbo_split_copy.c | 87 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);
|