Lines Matching refs:INTERNAL_FUNCTION_PARAMETERS

91 static void php_imagettftext_common(INTERNAL_FUNCTION_PARAMETERS, int, int);
121 static void php_image_filter_negate(INTERNAL_FUNCTION_PARAMETERS);
122 static void php_image_filter_grayscale(INTERNAL_FUNCTION_PARAMETERS);
123 static void php_image_filter_brightness(INTERNAL_FUNCTION_PARAMETERS);
124 static void php_image_filter_contrast(INTERNAL_FUNCTION_PARAMETERS);
125 static void php_image_filter_colorize(INTERNAL_FUNCTION_PARAMETERS);
126 static void php_image_filter_edgedetect(INTERNAL_FUNCTION_PARAMETERS);
127 static void php_image_filter_emboss(INTERNAL_FUNCTION_PARAMETERS);
128 static void php_image_filter_gaussian_blur(INTERNAL_FUNCTION_PARAMETERS);
129 static void php_image_filter_selective_blur(INTERNAL_FUNCTION_PARAMETERS);
130 static void php_image_filter_mean_removal(INTERNAL_FUNCTION_PARAMETERS);
131 static void php_image_filter_smooth(INTERNAL_FUNCTION_PARAMETERS);
132 static void php_image_filter_pixelate(INTERNAL_FUNCTION_PARAMETERS);
136 static void _php_image_create_from(INTERNAL_FUNCTION_PARAMETERS, int image_type, char *tn, gdImageP…
137 static void _php_image_output(INTERNAL_FUNCTION_PARAMETERS, int image_type, char *tn, void (*func_p…
139 static void _php_image_convert(INTERNAL_FUNCTION_PARAMETERS, int image_type);
2319 static void _php_image_create_from(INTERNAL_FUNCTION_PARAMETERS, int image_type, char *tn, gdImageP… in _php_image_create_from() argument
2526 static void _php_image_output(INTERNAL_FUNCTION_PARAMETERS, int image_type, char *tn, void (*func_p… in _php_image_output() argument
3362 static void php_imagepolygon(INTERNAL_FUNCTION_PARAMETERS, int filled) in php_imagepolygon() argument
3479 static void php_imagefontsize(INTERNAL_FUNCTION_PARAMETERS, int arg) in php_imagefontsize() argument
3541 static void php_imagechar(INTERNAL_FUNCTION_PARAMETERS, int mode) in php_imagechar() argument
3858 static void php_imagettftext_common(INTERNAL_FUNCTION_PARAMETERS, int mode, int extended) in php_imagettftext_common() argument
4023 static void _php_image_convert(INTERNAL_FUNCTION_PARAMETERS, int image_type ) in _php_image_convert() argument
4231 static void php_image_filter_negate(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_negate() argument
4242 static void php_image_filter_grayscale(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_grayscale() argument
4253 static void php_image_filter_brightness(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_brightness() argument
4278 static void php_image_filter_contrast(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_contrast() argument
4303 static void php_image_filter_colorize(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_colorize() argument
4329 static void php_image_filter_edgedetect(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_edgedetect() argument
4340 static void php_image_filter_emboss(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_emboss() argument
4351 static void php_image_filter_gaussian_blur(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_gaussian_blur() argument
4362 static void php_image_filter_selective_blur(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_selective_blur() argument
4373 static void php_image_filter_mean_removal(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_mean_removal() argument
4384 static void php_image_filter_smooth(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_smooth() argument
4410 static void php_image_filter_pixelate(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_pixelate() argument
4442 typedef void (*image_filter)(INTERNAL_FUNCTION_PARAMETERS); in PHP_FUNCTION()