Lines Matching refs:INTERNAL_FUNCTION_PARAMETERS

90 static void php_imagettftext_common(INTERNAL_FUNCTION_PARAMETERS, int, int);
116 static void php_image_filter_negate(INTERNAL_FUNCTION_PARAMETERS);
117 static void php_image_filter_grayscale(INTERNAL_FUNCTION_PARAMETERS);
118 static void php_image_filter_brightness(INTERNAL_FUNCTION_PARAMETERS);
119 static void php_image_filter_contrast(INTERNAL_FUNCTION_PARAMETERS);
120 static void php_image_filter_colorize(INTERNAL_FUNCTION_PARAMETERS);
121 static void php_image_filter_edgedetect(INTERNAL_FUNCTION_PARAMETERS);
122 static void php_image_filter_emboss(INTERNAL_FUNCTION_PARAMETERS);
123 static void php_image_filter_gaussian_blur(INTERNAL_FUNCTION_PARAMETERS);
124 static void php_image_filter_selective_blur(INTERNAL_FUNCTION_PARAMETERS);
125 static void php_image_filter_mean_removal(INTERNAL_FUNCTION_PARAMETERS);
126 static void php_image_filter_smooth(INTERNAL_FUNCTION_PARAMETERS);
127 static void php_image_filter_pixelate(INTERNAL_FUNCTION_PARAMETERS);
131 static void _php_image_create_from(INTERNAL_FUNCTION_PARAMETERS, int image_type, char *tn, gdImageP…
132 static void _php_image_output(INTERNAL_FUNCTION_PARAMETERS, int image_type, char *tn, void (*func_p…
134 static void _php_image_convert(INTERNAL_FUNCTION_PARAMETERS, int image_type);
2346 static void _php_image_create_from(INTERNAL_FUNCTION_PARAMETERS, int image_type, char *tn, gdImageP… in _php_image_create_from() argument
2548 static void _php_image_output(INTERNAL_FUNCTION_PARAMETERS, int image_type, char *tn, void (*func_p… in _php_image_output() argument
3320 static void php_imagepolygon(INTERNAL_FUNCTION_PARAMETERS, int filled) in php_imagepolygon() argument
3449 static void php_imagefontsize(INTERNAL_FUNCTION_PARAMETERS, int arg) in php_imagefontsize() argument
3511 static void php_imagechar(INTERNAL_FUNCTION_PARAMETERS, int mode) in php_imagechar() argument
3802 static void php_imagettftext_common(INTERNAL_FUNCTION_PARAMETERS, int mode, int extended) in php_imagettftext_common() argument
4430 static void _php_image_convert(INTERNAL_FUNCTION_PARAMETERS, int image_type ) in _php_image_convert() argument
4618 static void php_image_filter_negate(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_negate() argument
4629 static void php_image_filter_grayscale(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_grayscale() argument
4640 static void php_image_filter_brightness(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_brightness() argument
4663 static void php_image_filter_contrast(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_contrast() argument
4686 static void php_image_filter_colorize(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_colorize() argument
4710 static void php_image_filter_edgedetect(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_edgedetect() argument
4721 static void php_image_filter_emboss(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_emboss() argument
4732 static void php_image_filter_gaussian_blur(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_gaussian_blur() argument
4743 static void php_image_filter_selective_blur(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_selective_blur() argument
4754 static void php_image_filter_mean_removal(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_mean_removal() argument
4765 static void php_image_filter_smooth(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_smooth() argument
4789 static void php_image_filter_pixelate(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_pixelate() argument
4819 typedef void (*image_filter)(INTERNAL_FUNCTION_PARAMETERS); in PHP_FUNCTION()