Lines Matching defs:x
83 #define gd_itofx(x) (long)((unsigned long)(x) << 8) argument
86 #define gd_ftofx(x) (long)((x) * 256) argument
89 #define gd_dtofx(x) (long)((x) * 256) argument
92 #define gd_fxtoi(x) ((x) >> 8) argument
95 # define gd_fxtof(x) ((float)(x) / 256) argument
98 #define gd_fxtod(x) ((double)(x) / 256) argument
101 #define gd_mulfx(x,y) (((x) * (y)) >> 8) argument
104 #define gd_divfx(x,y) ((long)((unsigned long)(x) << 8) / (y)) argument
172 static double KernelBessel_J1(const double x) in KernelBessel_J1()
214 static double KernelBessel_P1(const double x) in KernelBessel_P1()
250 static double KernelBessel_Q1(const double x) in KernelBessel_Q1()
286 static double KernelBessel_Order1(double x) in KernelBessel_Order1()
304 static double filter_bessel(const double x) in filter_bessel()
312 static double filter_blackman(const double x) in filter_blackman()
362 const double x = x1 < 0.0 ? -x1 : x1; in filter_cubic_spline() local
380 const double x = x1 < 0.0 ? -x1 : x1; in filter_cubic_convolution() local
391 static double filter_box(double x) { in filter_box()
399 static double filter_catmullrom(const double x) in filter_catmullrom()
428 const double x = x1 < 0.0 ? -x1 : x1; in filter_lanczos8() local
445 const double x = x1 < 0.0 ? -x1 : x1; in filter_lanczos3() local
462 const double x = x1 < 0.0 ? -x1 : x1; in filter_hermite() local
472 const double x = x1 < 0.0 ? -x1 : x1; in filter_triangle() local
480 const double x = x1 < 0.0 ? -x1 : x1; in filter_bell() local
488 static double filter_mitchell(const double x) in filter_mitchell()
517 static double filter_cosine(const double x) in filter_cosine()
528 const double x = x1 < 0.0 ? -x1 : x1; in filter_quadratic() local
535 static double filter_bspline(const double x) in filter_bspline()
559 const double x = x1 < 0.0 ? -x1 : x1; in filter_quadratic_bspline() local
567 static double filter_gaussian(const double x) in filter_gaussian()
573 static double filter_hanning(const double x) in filter_hanning()
579 static double filter_hamming(const double x) in filter_hamming()
593 static double filter_power(const double x) in filter_power()
600 static double filter_sinc(const double x) in filter_sinc()
608 static double filter_welsh(const double x) in filter_welsh()
650 static inline int getPixelOverflowTC(gdImagePtr im, const int x, const int y, const int bgColor) in getPixelOverflowTC()
665 static inline int getPixelOverflowPalette(gdImagePtr im, const int x, const int y, const int bgColo… in getPixelOverflowPalette()
678 static int getPixelInterpolateWeight(gdImagePtr im, const double x, const double y, const int bgCol… in getPixelInterpolateWeight()
739 int getPixelInterpolated(gdImagePtr im, const double x, const double y, const int bgColor) in getPixelInterpolated()
952 unsigned int x; in _gdScaleRow() local
2322 register int x, y, src_offset_x, src_offset_y; in gdTransformAffineCopy() local