Lines Matching defs:x

76 #  define floorf(x) ((float)(floor(x)))  argument
93 #define gd_itofx(x) (long)((unsigned long)(x) << 8) argument
96 #define gd_ftofx(x) (long)((x) * 256) argument
99 #define gd_dtofx(x) (long)((x) * 256) argument
102 #define gd_fxtoi(x) ((x) >> 8) argument
105 # define gd_fxtof(x) ((float)(x) / 256) argument
108 #define gd_fxtod(x) ((double)(x) / 256) argument
111 #define gd_mulfx(x,y) (((x) * (y)) >> 8) argument
114 #define gd_divfx(x,y) ((long)((unsigned long)(x) << 8) / (y)) argument
182 static double KernelBessel_J1(const double x) in KernelBessel_J1()
224 static double KernelBessel_P1(const double x) in KernelBessel_P1()
260 static double KernelBessel_Q1(const double x) in KernelBessel_Q1()
296 static double KernelBessel_Order1(double x) in KernelBessel_Order1()
314 static double filter_bessel(const double x) in filter_bessel()
322 static double filter_blackman(const double x) in filter_blackman()
372 const double x = x1 < 0.0 ? -x1 : x1; in filter_cubic_spline() local
390 const double x = x1 < 0.0 ? -x1 : x1; in filter_cubic_convolution() local
401 static double filter_box(double x) { in filter_box()
409 static double filter_catmullrom(const double x) in filter_catmullrom()
438 const double x = x1 < 0.0 ? -x1 : x1; in filter_lanczos8() local
455 const double x = x1 < 0.0 ? -x1 : x1; in filter_lanczos3() local
472 const double x = x1 < 0.0 ? -x1 : x1; in filter_hermite() local
482 const double x = x1 < 0.0 ? -x1 : x1; in filter_triangle() local
490 const double x = x1 < 0.0 ? -x1 : x1; in filter_bell() local
498 static double filter_mitchell(const double x) in filter_mitchell()
527 static double filter_cosine(const double x) in filter_cosine()
538 const double x = x1 < 0.0 ? -x1 : x1; in filter_quadratic() local
545 static double filter_bspline(const double x) in filter_bspline()
569 const double x = x1 < 0.0 ? -x1 : x1; in filter_quadratic_bspline() local
577 static double filter_gaussian(const double x) in filter_gaussian()
583 static double filter_hanning(const double x) in filter_hanning()
589 static double filter_hamming(const double x) in filter_hamming()
603 static double filter_power(const double x) in filter_power()
610 static double filter_sinc(const double x) in filter_sinc()
618 static double filter_welsh(const double x) in filter_welsh()
660 static inline int getPixelOverflowTC(gdImagePtr im, const int x, const int y, const int bgColor) in getPixelOverflowTC()
675 static inline int getPixelOverflowPalette(gdImagePtr im, const int x, const int y, const int bgColo… in getPixelOverflowPalette()
688 static int getPixelInterpolateWeight(gdImagePtr im, const double x, const double y, const int bgCol… in getPixelInterpolateWeight()
749 int getPixelInterpolated(gdImagePtr im, const double x, const double y, const int bgColor) in getPixelInterpolated()
936 unsigned int x; in _gdScaleRow() local
2302 register int x, y, src_offset_x, src_offset_y; in gdTransformAffineCopy() local