Lines Matching refs:__global
366 inline float getPixelRed(const __global CLQuantum *p) { return (float)*p; }
367 inline float getPixelGreen(const __global CLQuantum *p) { return (float)*(p+1); }
368 inline float getPixelBlue(const __global CLQuantum *p) { return (float)*(p+2); }
369 …inline float getPixelAlpha(const __global CLQuantum *p,const unsigned int number_channels) { retur…
371 inline void setPixelRed(__global CLQuantum *p,const CLQuantum value) { *p=value; }
372 inline void setPixelGreen(__global CLQuantum *p,const CLQuantum value) { *(p+1)=value; }
373 inline void setPixelBlue(__global CLQuantum *p,const CLQuantum value) { *(p+2)=value; }
374 …inline void setPixelAlpha(__global CLQuantum *p,const unsigned int number_channels,const CLQuantum…
396 inline void ReadChannels(const __global CLQuantum *p, const unsigned int number_channels,
416 inline float4 ReadAllChannels(const __global CLQuantum *image, const unsigned int number_channels,
419 const __global CLQuantum *p = image + getPixelIndex(number_channels, columns, x, y);
436 inline float4 ReadFloat4(const __global CLQuantum *image, const unsigned int number_channels,
439 const __global CLQuantum *p = image + getPixelIndex(number_channels, columns, x, y);
450 inline void WriteChannels(__global CLQuantum *p, const unsigned int number_channels,
470 inline void WriteAllChannels(__global CLQuantum *image, const unsigned int number_channels,
473 __global CLQuantum *p = image + getPixelIndex(number_channels, columns, x, y);
487 inline void WriteFloat4(__global CLQuantum *image, const unsigned int number_channels,
491 __global CLQuantum *p = image + getPixelIndex(number_channels, columns, x, y);
835 void AddNoise(const __global CLQuantum *image,
840 __global CLQuantum *filteredImage)
855 const __global CLQuantum *p = image + pos;
856 __global CLQuantum *q = filteredImage + pos;
905 __kernel void BlurRow(const __global CLQuantum *image,
909 __local float4 *temp,__global float4 *tempImage)
961 __kernel void BlurColumn(const __global float4 *blurRowData,
965 __local float4 *temp,__global CLQuantum *filteredImage)
1100 __kernel void Contrast(__global CLPixelType *im, const unsigned int sharpen)
1137 __kernel void Histogram(__global CLPixelType * restrict im,
1141 __global uint4 * restrict histogram)
1155 atomic_inc((__global uint *)(&(histogram[pos]))+2); //red position
1168 __kernel void ContrastStretch(__global CLPixelType * restrict im,
1170 __global CLPixelType * restrict stretch_map,
1245 void ConvolveOptimized(const __global CLPixelType *input, __global CLPixelType *output,
1368 void Convolve(const __global CLPixelType *input, __global CLPixelType *output,
1469 __kernel void HullPass1(const __global CLPixelType *inputImage, __global CLPixelType *outputImage
1532 __kernel void HullPass2(const __global CLPixelType *inputImage, __global CLPixelType *outputImage
1628 __kernel void Equalize(__global CLPixelType * restrict im,
1630 __global CLPixelType * restrict equalize_map,
1756 __kernel void ComputeFunction(__global CLQuantum *image,const unsigned int number_channels,
1763 __global CLQuantum *p = image + getPixelIndex(number_channels, columns, x, y);
1805 __kernel void Grayscale(__global CLQuantum *image,const int number_channels,
1811 __global CLQuantum *p = image + getPixelIndex(number_channels, columns, x, y);
1844 …__kernel void LocalContrastBlurRow(__global CLPixelType *srcImage, __global CLPixelType *dstImage,…
1891 …ernel void LocalContrastBlurApplyColumn(__global CLPixelType *srcImage, __global CLPixelType *dstI…
2107 __kernel void Modulate(__global CLPixelType *im,
2166 void MotionBlur(const __global CLPixelType *input, __global CLPixelType *output,
2168 … const __global float *filter, const unsigned int width, const __global int2* offset,
2266 float CubicBC(const float x,const __global float* resizeFilterCoefficients)
2372 …lter(const float x, const ResizeWeightingFunctionType filterType, const __global float* filterCoef…
2402 …inline float getResizeFilterWeight(const __global float* resizeFilterCubicCoefficients, const Resi…
2446 …void ResizeHorizontalFilter(const __global CLQuantum *inputImage, const unsigned int number_channe…
2447 … const unsigned int inputColumns, const unsigned int inputRows, __global CLQuantum *filteredImage,
2449 …const int resizeFilterType, const int resizeWindowType, const __global float *resizeFilterCubicCoe…
2608 …void ResizeVerticalFilter(const __global CLQuantum *inputImage, const unsigned int number_channels,
2609 … const unsigned int inputColumns, const unsigned int inputRows, __global CLQuantum *filteredImage,
2611 …const int resizeFilterType, const int resizeWindowType, const __global float *resizeFilterCubicCoe…
2784 __kernel void RotationalBlur(const __global CLQuantum *image,
2788 __global CLQuantum *filteredImage)
2868 __kernel void UnsharpMaskBlurColumn(const __global CLQuantum* image,
2869 const __global float4 *blurRowData,const unsigned int number_channels,
2872 __local float* cachedFilter,const __global float *filter,
2874 __global CLQuantum *filteredImage)
2933 __kernel void UnsharpMask(const __global CLQuantum *image,const unsigned int number_channels,
2936 const float gain,const float threshold,__global CLQuantum *filteredImage)
3011 void WaveletDenoise(__global CLQuantum *srcImage,__global CLQuantum *dstImage,