Lines Matching refs:INTERNAL_FUNCTION_PARAMETERS

95 static void php_imagettftext_common(INTERNAL_FUNCTION_PARAMETERS, int, int);
126 static void php_image_filter_negate(INTERNAL_FUNCTION_PARAMETERS);
127 static void php_image_filter_grayscale(INTERNAL_FUNCTION_PARAMETERS);
128 static void php_image_filter_brightness(INTERNAL_FUNCTION_PARAMETERS);
129 static void php_image_filter_contrast(INTERNAL_FUNCTION_PARAMETERS);
130 static void php_image_filter_colorize(INTERNAL_FUNCTION_PARAMETERS);
131 static void php_image_filter_edgedetect(INTERNAL_FUNCTION_PARAMETERS);
132 static void php_image_filter_emboss(INTERNAL_FUNCTION_PARAMETERS);
133 static void php_image_filter_gaussian_blur(INTERNAL_FUNCTION_PARAMETERS);
134 static void php_image_filter_selective_blur(INTERNAL_FUNCTION_PARAMETERS);
135 static void php_image_filter_mean_removal(INTERNAL_FUNCTION_PARAMETERS);
136 static void php_image_filter_smooth(INTERNAL_FUNCTION_PARAMETERS);
137 static void php_image_filter_pixelate(INTERNAL_FUNCTION_PARAMETERS);
138 static void php_image_filter_scatter(INTERNAL_FUNCTION_PARAMETERS);
142 static void _php_image_create_from(INTERNAL_FUNCTION_PARAMETERS, int image_type, char *tn, gdImageP…
143 static void _php_image_output(INTERNAL_FUNCTION_PARAMETERS, int image_type, char *tn, void (*func_p…
145 static void _php_image_convert(INTERNAL_FUNCTION_PARAMETERS, int image_type);
2443 static void _php_image_create_from(INTERNAL_FUNCTION_PARAMETERS, int image_type, char *tn, gdImageP… in _php_image_create_from() argument
2670 static void _php_image_output(INTERNAL_FUNCTION_PARAMETERS, int image_type, char *tn, void (*func_p… in _php_image_output() argument
3507 static void php_imagepolygon(INTERNAL_FUNCTION_PARAMETERS, int filled) in php_imagepolygon() argument
3642 static void php_imagefontsize(INTERNAL_FUNCTION_PARAMETERS, int arg) in php_imagefontsize() argument
3704 static void php_imagechar(INTERNAL_FUNCTION_PARAMETERS, int mode) in php_imagechar() argument
4063 static void php_imagettftext_common(INTERNAL_FUNCTION_PARAMETERS, int mode, int extended) in php_imagettftext_common() argument
4175 static void _php_image_convert(INTERNAL_FUNCTION_PARAMETERS, int image_type ) in _php_image_convert() argument
4374 static void php_image_filter_negate(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_negate() argument
4385 static void php_image_filter_grayscale(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_grayscale() argument
4396 static void php_image_filter_brightness(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_brightness() argument
4417 static void php_image_filter_contrast(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_contrast() argument
4438 static void php_image_filter_colorize(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_colorize() argument
4460 static void php_image_filter_edgedetect(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_edgedetect() argument
4471 static void php_image_filter_emboss(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_emboss() argument
4482 static void php_image_filter_gaussian_blur(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_gaussian_blur() argument
4493 static void php_image_filter_selective_blur(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_selective_blur() argument
4504 static void php_image_filter_mean_removal(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_mean_removal() argument
4515 static void php_image_filter_smooth(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_smooth() argument
4537 static void php_image_filter_pixelate(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_pixelate() argument
4559 static void php_image_filter_scatter(INTERNAL_FUNCTION_PARAMETERS) in php_image_filter_scatter() argument
4605 typedef void (*image_filter)(INTERNAL_FUNCTION_PARAMETERS); in PHP_FUNCTION()