/PHP-8.1/Zend/tests/ |
H A D | list_mixed_nested_keyed_unkeyed.phpt | 11 list(list("x" => $x1, "y" => $y1), list("x" => $x2, "y" => $y2)) = $points; 12 var_dump($x1, $y1, $x2, $y2); 21 list("x" => list($x1, $x2), "y" => list($y1, $y2)) = $invertedPoints; 22 var_dump($x1, $y1, $x2, $y2);
|
H A D | bug35239.phpt | 8 $a->x0->y1 =& $a->x0; 12 $a->x0->y1 = "ok\n"; 21 ["y1"]=>
|
/PHP-8.1/ext/gd/tests/ |
H A D | bug53156.phpt | 21 function draw_and_check_rectangle($x1, $y1, $x2, $y2) 26 imagerectangle($img, $x1, $y1, $x2, $y2, $black); 28 $y = ($y1 + $y2) / 2; 29 draw_and_check_pixel($x, $y1);
|
H A D | imagegammacorrect_variation2.phpt | 40 $y1 = 120 * $y; 42 $y2 = $y1 + 119; 44 imagefilledrectangle($im, $x1,$y1, $x2,$y2, $color);
|
/PHP-8.1/ext/gd/libgd/ |
H A D | gd.c | 1032 for (;y1 <= y2; y1++) { in gdImageVLine() 1101 y = y1; in gdImageLine() 1164 y = y1; in gdImageLine() 1270 y = y1; in gdImageAALine() 2097 t=y1; in gdImageRectangle() 2155 gdImageLine(im, x1, y1, x2, y1, color); in gdImageRectangle() 2179 y = y1; in _gdImageFilledHRectangle() 2193 y1 = 0; in _gdImageFilledHRectangle() 2223 y = y1; in _gdImageFilledVRectangle() 2237 y1 = 0; in _gdImageFilledVRectangle() [all …]
|
H A D | gd.h | 425 void gdImageLine(gdImagePtr im, int x1, int y1, int x2, int y2, int color); 426 void gdImageAALine(gdImagePtr im, int x1, int y1, int x2, int y2, int color); 430 void gdImageDashedLine(gdImagePtr im, int x1, int y1, int x2, int y2, int color); 433 void gdImageRectangle(gdImagePtr im, int x1, int y1, int x2, int y2, int color); 435 void gdImageFilledRectangle(gdImagePtr im, int x1, int y1, int x2, int y2, int color); 436 void gdImageSetClip(gdImagePtr im, int x1, int y1, int x2, int y2);
|
H A D | gdft.c | 830 int x1 = 0, y1 = 0; local 976 y1 = (int)(- penf.y * cos_a + 32) / 64; 990 y1 = (int)(- penf.y * cos_a + 32) / 64; 1177 …gdft_draw_bitmap(tc_cache, im, fg, bm->bitmap, x + x1 + ((pen.x + 31) >> 6) + bm->left, y + y1 + (…
|
H A D | gd_interpolation.c | 2195 int x1,y1; in gdImageClipRectangle() local 2199 y1 = r->y + r->height - 1; in gdImageClipRectangle() 2203 r->height = CLAMP(y1, c1y, c2y) - r->y + 1; in gdImageClipRectangle()
|
/PHP-8.1/ext/date/lib/ |
H A D | dow.c | 50 timelib_sll c1, y1, m1, dow; in timelib_day_of_week_ex() local 56 y1 = positive_mod(y, 100); in timelib_day_of_week_ex() 58 dow = positive_mod((c1 + y1 + m1 + (y1 / 4) + d), 7); in timelib_day_of_week_ex()
|
/PHP-8.1/ext/gd/ |
H A D | gd.stub.php | 206 function imageline(GdImage $image, int $x1, int $y1, int $x2, int $y2, int $color): bool {} argument 208 function imagedashedline(GdImage $image, int $x1, int $y1, int $x2, int $y2, int $color): bool {} argument 210 function imagerectangle(GdImage $image, int $x1, int $y1, int $x2, int $y2, int $color): bool {} argument 212 function imagefilledrectangle(GdImage $image, int $x1, int $y1, int $x2, int $y2, int $color): bool… argument 258 function imagesetclip(GdImage $image, int $x1, int $y1, int $x2, int $y2): bool {} argument
|
H A D | gd.c | 2496 zend_long x1, y1, x2, y2, col; in PHP_FUNCTION() local 2509 gdImageLine(im, x1, y1, x2, y2, col); in PHP_FUNCTION() 2518 zend_long x1, y1, x2, y2, col; in PHP_FUNCTION() local 2536 zend_long x1, y1, x2, y2, col; in PHP_FUNCTION() local 2545 gdImageRectangle(im, x1, y1, x2, y2, col); in PHP_FUNCTION() 2554 zend_long x1, y1, x2, y2, col; in PHP_FUNCTION() local 3157 zend_long x1, y1, x2, y2; in PHP_FUNCTION() local 3165 gdImageSetClip(im, x1, y1, x2, y2); in PHP_FUNCTION() 3175 int x1, y1, x2, y2; in PHP_FUNCTION() local 3183 gdImageGetClip(im, &x1, &y1, &x2, &y2); in PHP_FUNCTION() [all …]
|
H A D | gd_arginfo.h | 348 ZEND_ARG_TYPE_INFO(0, y1, IS_LONG, 0) 470 ZEND_ARG_TYPE_INFO(0, y1, IS_LONG, 0)
|
/PHP-8.1/build/ |
H A D | php_cxx_compile_stdcxx.m4 | 849 volatile double y1; 857 auto [ x1, y1 ] = f1();
|