Searched defs:yFactor (Results 1 - 3 of 3) sorted by relevance

/external/deqp/framework/delibs/deimage/
H A DdeImage.c133 int yFactor = (yFixed & 0xFF); local
134 int f00 = ((256-xFactor) * (256-yFactor)) >> 8;
135 int f10 = ((256-xFactor) * yFactor) >> 8;
136 int f01 = (xFactor * (256-yFactor)) >> 8;
137 int f11 = (xFactor * yFactor) >> 8;
/external/deqp/modules/glshared/
H A DglsFragmentOpUtil.cpp39 inline T triQuadInterpolate (const T values[4], float xFactor, float yFactor) argument
41 if (xFactor + yFactor < 1.0f)
42 return values[0] + (values[2]-values[0])*xFactor + (values[1]-values[0])*yFactor;
44 return values[3] + (values[1]-values[3])*(1.0f-xFactor) + (values[2]-values[3])*(1.0f-yFactor);
/external/ImageMagick/MagickCore/
H A Daccelerate.c4180 const float yFactor,ExceptionInfo *exception)
4229 scale=MAGICK_MAX(1.0/yFactor+MagickEpsilon,1.0);
4258 cacheRangeStart=(int) (((0 + 0.5)/yFactor+MagickEpsilon)-support+0.5);
4259 cacheRangeEnd=(int) ((((pixelPerWorkgroup-1) + 0.5)/yFactor+
4319 status|=SetOpenCLKernelArg(verticalKernel,i++,sizeof(float),(void*)&yFactor);
4380 yFactor; local
4431 yFactor=(float) resizedRows/(float) image->rows;
4432 if (xFactor > yFactor)
4455 (cl_uint) resizedRows,resizeFilter,cubicCoefficientsBuffer,yFactor,
4475 (cl_uint) resizedRows,resizeFilter,cubicCoefficientsBuffer,yFactor,
4175 resizeVerticalFilter(MagickCLDevice device, cl_command_queue queue,const Image *image,Image * filteredImage, cl_mem imageBuffer,cl_uint number_channels,cl_uint columns,cl_uint rows, cl_mem resizedImageBuffer,cl_uint resizedColumns,cl_uint resizedRows, const ResizeFilter *resizeFilter,cl_mem resizeFilterCubicCoefficients, const float yFactor,ExceptionInfo *exception) argument
[all...]

Completed in 267 milliseconds