Home
last modified time | relevance | path

Searched refs:tmpImage (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/mesa/swrast/
Ds_copypix.c91 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/effects/
DSkBlurMask.cpp952 SkAutoTMalloc<float> tmpImage(tmpSize); in BlurGroundTruth() local
953 memset(tmpImage, 0, tmpSize*sizeof(tmpImage[0])); in BlurGroundTruth()
958 float *outPixel = tmpImage + (x-pad)*tmpWidth + y + 2*pad; // transposed output in BlurGroundTruth()
972 float *srcScanline = tmpImage + y*tmpWidth; in BlurGroundTruth()
/external/ImageMagick/MagickCore/
Daccelerate-kernels-private.h1844 …stBlurRow(__global CLPixelType *srcImage, __global CLPixelType *dstImage, __global float *tmpImage,
1885 tmpImage[i + y * imageWidth] = sum / ((radius + 1) * (radius + 1));