Lines Matching defs:x

75 #  define floorf(x) ((float)(floor(x)))  argument
88 #define CLAMP(x, low, high) (((x) > (high)) ? (high) : (((x) < (low)) ? (low) : (x))) argument
94 #define gd_itofx(x) ((x) << 8) argument
97 #define gd_ftofx(x) (long)((x) * 256) argument
100 #define gd_dtofx(x) (long)((x) * 256) argument
103 #define gd_fxtoi(x) ((x) >> 8) argument
106 # define gd_fxtof(x) ((float)(x) / 256) argument
109 #define gd_fxtod(x) ((double)(x) / 256) argument
112 #define gd_mulfx(x,y) (((x) * (y)) >> 8) argument
115 #define gd_divfx(x,y) (((x) << 8) / (y)) argument
183 static double KernelBessel_J1(const double x) in KernelBessel_J1()
225 static double KernelBessel_P1(const double x) in KernelBessel_P1()
261 static double KernelBessel_Q1(const double x) in KernelBessel_Q1()
297 static double KernelBessel_Order1(double x) in KernelBessel_Order1()
315 static double filter_bessel(const double x) in filter_bessel()
323 static double filter_blackman(const double x) in filter_blackman()
372 const double x = x1 < 0.0 ? -x1 : x1; in filter_cubic_spline() local
388 const double x = x1 < 0.0 ? -x1 : x1; in filter_cubic_convolution() local
398 static double filter_box(double x) { in filter_box()
406 static double filter_catmullrom(const double x) in filter_catmullrom()
433 const double x = x1 < 0.0 ? -x1 : x1; in filter_lanczos8() local
449 const double x = x1 < 0.0 ? -x1 : x1; in filter_lanczos3() local
465 const double x = x1 < 0.0 ? -x1 : x1; in filter_hermite() local
475 const double x = x1 < 0.0 ? -x1 : x1; in filter_triangle() local
483 const double x = x1 < 0.0 ? -x1 : x1; in filter_bell() local
491 static double filter_mitchell(const double x) in filter_mitchell()
519 static double filter_cosine(const double x) in filter_cosine()
529 const double x = x1 < 0.0 ? -x1 : x1; in filter_quadratic() local
536 static double filter_bspline(const double x) in filter_bspline()
559 const double x = x1 < 0.0 ? -x1 : x1; in filter_quadratic_bspline() local
566 static double filter_gaussian(const double x) in filter_gaussian()
572 static double filter_hanning(const double x) in filter_hanning()
578 static double filter_hamming(const double x) in filter_hamming()
592 static double filter_power(const double x) in filter_power()
599 static double filter_sinc(const double x) in filter_sinc()
606 static double filter_welsh(const double x) in filter_welsh()
648 static inline int _setEdgePixel(const gdImagePtr src, unsigned int x, unsigned int y, gdFixed cover… in _setEdgePixel()
656 static inline int getPixelOverflowTC(gdImagePtr im, const int x, const int y, const int bgColor) in getPixelOverflowTC()
671 static inline int getPixelOverflowPalette(gdImagePtr im, const int x, const int y, const int bgColo… in getPixelOverflowPalette()
684 static int getPixelInterpolateWeight(gdImagePtr im, const double x, const double y, const int bgCol… in getPixelInterpolateWeight()
745 int getPixelInterpolated(gdImagePtr im, const double x, const double y, const int bgColor) in getPixelInterpolated()
933 unsigned int x; in _gdScaleRow() local
1130 static inline int getPixelOverflowColorTC(gdImagePtr im, const int x, const int y, const int color) in getPixelOverflowColorTC()
2352 register int x, y, src_offset_x, src_offset_y; in gdTransformAffineCopy() local