Searched refs:tmpImage (Results 1 – 4 of 4) sorted by relevance
/external/mesa3d/src/mesa/swrast/ |
D | s_copypix.c | 91 GLfloat *tmpImage, *p; in copy_rgba_pixels() local 131 tmpImage = malloc(width * height * sizeof(GLfloat) * 4); in copy_rgba_pixels() 132 if (!tmpImage) { in copy_rgba_pixels() 137 p = tmpImage; in copy_rgba_pixels() 143 p = tmpImage; in copy_rgba_pixels() 146 tmpImage = NULL; /* silence compiler warnings */ in copy_rgba_pixels() 188 free(tmpImage); in copy_rgba_pixels() 238 GLfloat *p, *tmpImage, *depth; in copy_depth_pixels() local 278 tmpImage = malloc(width * height * sizeof(GLfloat)); in copy_depth_pixels() 279 if (!tmpImage) { in copy_depth_pixels() [all …]
|
/external/skia/src/core/ |
D | SkBlurMask.cpp | 586 SkAutoTMalloc<float> tmpImage(tmpSize); in BlurGroundTruth() local 587 memset(tmpImage, 0, tmpSize*sizeof(tmpImage[0])); in BlurGroundTruth() 592 float *outPixel = tmpImage + (x-pad)*tmpWidth + y + 2*pad; // transposed output in BlurGroundTruth() 606 float *srcScanline = tmpImage + y*tmpWidth; in BlurGroundTruth()
|
/external/skqp/src/core/ |
D | SkBlurMask.cpp | 591 SkAutoTMalloc<float> tmpImage(tmpSize); in BlurGroundTruth() local 592 memset(tmpImage, 0, tmpSize*sizeof(tmpImage[0])); in BlurGroundTruth() 597 float *outPixel = tmpImage + (x-pad)*tmpWidth + y + 2*pad; // transposed output in BlurGroundTruth() 611 float *srcScanline = tmpImage + y*tmpWidth; in BlurGroundTruth()
|
/external/ImageMagick/MagickCore/ |
D | accelerate-kernels-private.h | 1847 …stBlurRow(__global CLPixelType *srcImage, __global CLPixelType *dstImage, __global float *tmpImage, 1891 tmpImage[i + y * imageWidth] = sum / ((radius + 1) * (radius + 1));
|