Lines Matching refs:INTERNAL_FUNCTION_PARAMETERS

92 static void php_imagettftext_common(INTERNAL_FUNCTION_PARAMETERS, int, int);
149 static void php_image_filter_negate(INTERNAL_FUNCTION_PARAMETERS);
150 static void php_image_filter_grayscale(INTERNAL_FUNCTION_PARAMETERS);
151 static void php_image_filter_brightness(INTERNAL_FUNCTION_PARAMETERS);
152 static void php_image_filter_contrast(INTERNAL_FUNCTION_PARAMETERS);
153 static void php_image_filter_colorize(INTERNAL_FUNCTION_PARAMETERS);
154 static void php_image_filter_edgedetect(INTERNAL_FUNCTION_PARAMETERS);
155 static void php_image_filter_emboss(INTERNAL_FUNCTION_PARAMETERS);
156 static void php_image_filter_gaussian_blur(INTERNAL_FUNCTION_PARAMETERS);
157 static void php_image_filter_selective_blur(INTERNAL_FUNCTION_PARAMETERS);
158 static void php_image_filter_mean_removal(INTERNAL_FUNCTION_PARAMETERS);
159 static void php_image_filter_smooth(INTERNAL_FUNCTION_PARAMETERS);
160 static void php_image_filter_pixelate(INTERNAL_FUNCTION_PARAMETERS);
164 static void _php_image_create_from(INTERNAL_FUNCTION_PARAMETERS, int image_type, char *tn, gdImageP…
165 static void _php_image_output(INTERNAL_FUNCTION_PARAMETERS, int image_type, char *tn, void (*func_p…
167 static void _php_image_convert(INTERNAL_FUNCTION_PARAMETERS, int image_type);
2409 static void _php_image_create_from(INTERNAL_FUNCTION_PARAMETERS, int image_type, char *tn, gdImageP… in _php_image_create_from() argument
2622 static void _php_image_output(INTERNAL_FUNCTION_PARAMETERS, int image_type, char *tn, void (*func_p… in _php_image_output() argument
3419 static void php_imagepolygon(INTERNAL_FUNCTION_PARAMETERS, int filled) in php_imagepolygon() argument
3536 static void php_imagefontsize(INTERNAL_FUNCTION_PARAMETERS, int arg) in php_imagefontsize() argument
3598 static void php_imagechar(INTERNAL_FUNCTION_PARAMETERS, int mode) in php_imagechar() argument
3891 static void php_imagettftext_common(INTERNAL_FUNCTION_PARAMETERS, int mode, int extended) in php_imagettftext_common() argument
4541 static void _php_image_convert(INTERNAL_FUNCTION_PARAMETERS, int image_type ) in _php_image_convert() argument
4749 static void php_image_filter_negate(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_negate() argument
4760 static void php_image_filter_grayscale(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_grayscale() argument
4771 static void php_image_filter_brightness(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_brightness() argument
4794 static void php_image_filter_contrast(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_contrast() argument
4817 static void php_image_filter_colorize(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_colorize() argument
4841 static void php_image_filter_edgedetect(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_edgedetect() argument
4852 static void php_image_filter_emboss(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_emboss() argument
4863 static void php_image_filter_gaussian_blur(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_gaussian_blur() argument
4874 static void php_image_filter_selective_blur(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_selective_blur() argument
4885 static void php_image_filter_mean_removal(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_mean_removal() argument
4896 static void php_image_filter_smooth(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_smooth() argument
4920 static void php_image_filter_pixelate(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_pixelate() argument
4950 typedef void (*image_filter)(INTERNAL_FUNCTION_PARAMETERS); in PHP_FUNCTION()