Lines Matching refs:INTERNAL_FUNCTION_PARAMETERS
97 static void php_imagettftext_common(INTERNAL_FUNCTION_PARAMETERS, int);
106 static void php_image_filter_negate(INTERNAL_FUNCTION_PARAMETERS);
107 static void php_image_filter_grayscale(INTERNAL_FUNCTION_PARAMETERS);
108 static void php_image_filter_brightness(INTERNAL_FUNCTION_PARAMETERS);
109 static void php_image_filter_contrast(INTERNAL_FUNCTION_PARAMETERS);
110 static void php_image_filter_colorize(INTERNAL_FUNCTION_PARAMETERS);
111 static void php_image_filter_edgedetect(INTERNAL_FUNCTION_PARAMETERS);
112 static void php_image_filter_emboss(INTERNAL_FUNCTION_PARAMETERS);
113 static void php_image_filter_gaussian_blur(INTERNAL_FUNCTION_PARAMETERS);
114 static void php_image_filter_selective_blur(INTERNAL_FUNCTION_PARAMETERS);
115 static void php_image_filter_mean_removal(INTERNAL_FUNCTION_PARAMETERS);
116 static void php_image_filter_smooth(INTERNAL_FUNCTION_PARAMETERS);
117 static void php_image_filter_pixelate(INTERNAL_FUNCTION_PARAMETERS);
118 static void php_image_filter_scatter(INTERNAL_FUNCTION_PARAMETERS);
122 static void _php_image_create_from(INTERNAL_FUNCTION_PARAMETERS, int image_type, const char *tn, gd…
123 static void _php_image_output(INTERNAL_FUNCTION_PARAMETERS, int image_type, const char *tn);
1512 static void _php_image_create_from(INTERNAL_FUNCTION_PARAMETERS, int image_type, const char *tn, gd… in _php_image_create_from() argument
1742 static void _php_image_output(INTERNAL_FUNCTION_PARAMETERS, int image_type, const char *tn) in _php_image_output() argument
2797 static void php_imagepolygon(INTERNAL_FUNCTION_PARAMETERS, int filled) in php_imagepolygon() argument
2919 static void php_imagefontsize(INTERNAL_FUNCTION_PARAMETERS, int arg) in php_imagefontsize() argument
2980 static void php_imagechar(INTERNAL_FUNCTION_PARAMETERS, int mode) in php_imagechar() argument
3333 static void php_imagettftext_common(INTERNAL_FUNCTION_PARAMETERS, int mode) in php_imagettftext_common() argument
3420 static void php_image_filter_negate(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_negate() argument
3431 static void php_image_filter_grayscale(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_grayscale() argument
3442 static void php_image_filter_brightness(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_brightness() argument
3463 static void php_image_filter_contrast(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_contrast() argument
3484 static void php_image_filter_colorize(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_colorize() argument
3510 static void php_image_filter_edgedetect(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_edgedetect() argument
3521 static void php_image_filter_emboss(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_emboss() argument
3532 static void php_image_filter_gaussian_blur(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_gaussian_blur() argument
3543 static void php_image_filter_selective_blur(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_selective_blur() argument
3554 static void php_image_filter_mean_removal(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_mean_removal() argument
3565 static void php_image_filter_smooth(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_smooth() argument
3587 static void php_image_filter_pixelate(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_pixelate() argument
3611 static void php_image_filter_scatter(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_scatter() argument
3669 typedef void (*image_filter)(INTERNAL_FUNCTION_PARAMETERS); in PHP_FUNCTION()