Searched refs:gdImageBoundsSafe (Results 1 – 6 of 6) sorted by relevance
/PHP-8.2/ext/gd/libgd/ |
H A D | gd_pixelate.c | 16 if (gdImageBoundsSafe(im, x, y)) { in gdImagePixelate() 34 if (!gdImageBoundsSafe(im, x + cx, y + cy)) { in gdImagePixelate()
|
H A D | gd_filter.c | 75 if (!gdImageBoundsSafe(im, dest_x, dest_y)) { in gdImageScatterEx() 97 if (!gdImageBoundsSafe(im, dest_x, dest_y)) { in gdImageScatterEx()
|
H A D | gd.h | 945 #define gdImageBoundsSafe(im, x, y) (!((((y) < (im)->cy1) || ((y) > (im)->cy2)) || (((x) < (im)->cx… macro
|
H A D | gd_interpolation.c | 662 if (gdImageBoundsSafe(im, x, y)) { in getPixelOverflowTC() 677 if (gdImageBoundsSafe(im, x, y)) { in getPixelOverflowPalette()
|
H A D | gd.c | 802 if (gdImageBoundsSafe(im, x, y)) { in gdImageSetPixel() 983 if (gdImageBoundsSafe(im, x, y)) { in gdImageGetPixel()
|
/PHP-8.2/ext/gd/ |
H A D | gd.c | 2078 if (im->tpixels && gdImageBoundsSafe(im, x, y)) { in PHP_FUNCTION() 2085 if (im->pixels && gdImageBoundsSafe(im, x, y)) { in PHP_FUNCTION()
|
Completed in 47 milliseconds