Home
last modified time | relevance | path

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

/external/mesa3d/src/mesa/swrast/
Ds_copypix.c102 GLfloat *tmpImage, *p; in copy_rgba_pixels() local
142 tmpImage = (GLfloat *) malloc(width * height * sizeof(GLfloat) * 4); in copy_rgba_pixels()
143 if (!tmpImage) { in copy_rgba_pixels()
148 p = tmpImage; in copy_rgba_pixels()
154 p = tmpImage; in copy_rgba_pixels()
157 tmpImage = NULL; /* silence compiler warnings */ in copy_rgba_pixels()
199 free(tmpImage); in copy_rgba_pixels()
249 GLfloat *p, *tmpImage, *depth; in copy_depth_pixels() local
289 tmpImage = (GLfloat *) malloc(width * height * sizeof(GLfloat)); in copy_depth_pixels()
290 if (!tmpImage) { in copy_depth_pixels()
[all …]
/external/skia/src/effects/
DSkBlurMask.cpp932 SkAutoTMalloc<float> tmpImage(tmpSize); in BlurGroundTruth() local
933 memset(tmpImage, 0, tmpSize*sizeof(tmpImage[0])); in BlurGroundTruth()
938 float *outPixel = tmpImage + (x-pad)*tmpWidth + y + 2*pad; // transposed output in BlurGroundTruth()
952 float *srcScanline = tmpImage + y*tmpWidth; in BlurGroundTruth()
/external/opencv/cvaux/src/
Dcvcorrimages.cpp61 IplImage *tmpImage = 0; in icvCreateFeaturePoints() local
123 CV_CALL( tmpImage = cvCreateImage(cvSize(w,h),32,1) ); in icvCreateFeaturePoints()
137 cvGoodFeaturesToTrack(grayImage, eigImage, tmpImage, cornerPoints, &foundNum, quality, minDist); in icvCreateFeaturePoints()
168 cvReleaseImage(&tmpImage); in icvCreateFeaturePoints()
/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));