/PHP-8.3/ext/standard/tests/math/ |
H A D | log.phpt | 7 $x2 = (int) exp(log($x)); 9 if (($x2 < ($x + 2)) && ($x2 > ($x - 2))) { 12 print "$x : $x2\n"; 20 $x2 = (int) pow($base, log($x, $base)); 22 if (($x2 < ($x + 2)) && ($x2 > ($x - 2))) { 25 print "base $base: $x : $x2\n";
|
/PHP-8.3/ext/standard/ |
H A D | crc32_x86.c | 95 x2 = _mm_shuffle_epi8(x2, shuf_mask); /* endianness swap */ in crc32_pclmul_batch() 111 x2 = _mm_clmulepi64_si128(x2, k, 0x11); in crc32_pclmul_batch() 123 x2 = _mm_xor_si128(x2, x6); in crc32_pclmul_batch() 127 x2 = _mm_xor_si128(x2, x10); in crc32_pclmul_batch() 142 x0 = _mm_xor_si128(x0, x2); in crc32_pclmul_batch() 155 x2 = _mm_shuffle_epi8(x2, shuf_mask); /* endianness swap */ in crc32_pclmul_batch() 158 x0 = _mm_xor_si128(x0, x2); in crc32_pclmul_batch() 191 __m128i x0, x1, x2, k; in crc32_pclmul_reflected_batch() local 220 x2 = _mm_clmulepi64_si128(x2, k, 0x11); in crc32_pclmul_reflected_batch() 228 x2 = _mm_xor_si128(x2, x6); in crc32_pclmul_reflected_batch() [all …]
|
/PHP-8.3/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 | bug32296.phpt | 16 private function x2() {} 39 [0] => x2 46 [0] => x2
|
/PHP-8.3/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); 27 $x = ($x1 + $x2) / 2; 32 draw_and_check_pixel($x2, $y);
|
H A D | imagegammacorrect_variation2.phpt | 41 $x2 = $x1 + 19; 44 imagefilledrectangle($im, $x1,$y1, $x2,$y2, $color);
|
H A D | types.phpt | 13 if ($flags&0x2 && !function_exists("imagejpeg")) {
|
H A D | libgd00186.phpt | 12 $other = imagecolorallocate($tile,0,0,0x2);
|
H A D | imageconvolution_error3.phpt | 2 Testing wrong array size 3x2 in imageconvolution() of GD library
|
/PHP-8.3/ext/gd/libgd/ |
H A D | gd.c | 1095 x = x2; in gdImageLine() 1160 x = x2; in gdImageLine() 1347 x = x2; in gdImageDashedLine() 1397 x = x2; in gdImageDashedLine() 2104 x1 = x2; in gdImageRectangle() 2105 x2 = t; in gdImageRectangle() 2158 gdImageLine(im, x2, y1 + 1, x2, y2 - 1, color); in gdImageRectangle() 2174 x1 = x2; in _gdImageFilledHRectangle() 2175 x2 = x; in _gdImageFilledHRectangle() 2219 x2 = x; 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);
|
/PHP-8.3/ext/hash/ |
H A D | hash_haval.c | 125 #define F1(x6,x5,x4,x3,x2,x1,x0) ( ((x1) & (x4)) ^ ((x2) & (x5)) ^ ((x3) & (x6)) ^ ((x0) & (x1)) ^ … argument 126 #define F2(x6,x5,x4,x3,x2,x1,x0) ( ((x1) & (x2) & (x3)) ^ ((x2) & (x4) & (x5)) ^ ((x1) & (x2)) ^ ((… argument 127 ((x2) & (x6)) ^ ((x3) & (x5)) ^ ((x4) & (x5)) ^ ((x0) & (x2)) ^ (x0) ) 128 #define F3(x6,x5,x4,x3,x2,x1,x0) ( ((x1) & (x2) & (x3)) ^ ((x1) & (x4)) ^ ((x2) & (x5)) ^ ((x3) & (… argument 129 #define F4(x6,x5,x4,x3,x2,x1,x0) ( ((x1) & (x2) & (x3)) ^ ((x2) & (x4) & (x5)) ^ ((x3) & (x4) & (x6… argument 130 ((x1) & (x4)) ^ ((x2) & (x6)) ^ ((x3) & (x4)) ^ ((x3) & (x5)) ^ \ 132 #define F5(x6,x5,x4,x3,x2,x1,x0) ( ((x1) & (x4)) ^ ((x2) & (x5)) ^ ((x3) & (x6)) ^ \ argument 133 ((x0) & (x1) & (x2) & (x3)) ^ ((x0) & (x5)) ^ (x0) )
|
H A D | hash_tiger.c | 53 round(c,a,b,x2,mul) \ 63 x2 += x1; \ 64 x3 -= x2 ^ ((~x1)<<19); \ 71 x2 ^= x1; \ 72 x3 += x2; \ 73 x4 -= x3 ^ ((~x2)>>23); \ 98 x0=str[0]; x1=str[1]; x2=str[2]; x3=str[3]; \ 117 register uint64_t a, b, c, tmpa, x0, x1, x2, x3, x4, x5, x6, x7; \
|
/PHP-8.3/ext/dom/tests/ |
H A D | gh13012.phpt | 12 foreach ($dom->getElementsByTagName('x') as $x2) { 13 echo "Comparing ", $dom->saveXML($x1), " with ", $dom->saveXML($x2), "\n"; 14 var_dump($x1->isEqualNode($x2));
|
H A D | gh13012_ns.phpt | 12 foreach ($dom->getElementsByTagName('x') as $x2) { 13 echo "Comparing ", $dom->saveXML($x1), " with ", $dom->saveXML($x2), "\n"; 14 var_dump($x1->isEqualNode($x2));
|
/PHP-8.3/Zend/asm/ |
H A D | make_arm64_aapcs_pe_armasm.asm | 84 str x2, [x0, #0x40] 86 adr x2, trampoline 87 str x2, [x0, #0xc0]
|
H A D | make_arm64_aapcs_macho_gas.S | 67 str x2, [x0, #0xa0]
|
H A D | make_arm64_aapcs_elf_gas.S | 68 str x2, [x0, #0xa0]
|
/PHP-8.3/tests/lang/ |
H A D | engine_assignExecutionOrder_003.phpt | 74 $x2 = array(array(2),2); 78 $x[mod($x1)][mod($x2)] = $bx[mod($x3)];
|
/PHP-8.3/ext/standard/tests/strings/ |
H A D | strnatcasecmp_basic.phpt | 17 str_dump('x2-y7', 'x8-y8');
|
/PHP-8.3/ext/zlib/tests/ |
H A D | bug_40189.phpt | 10 $a = "\x3\x0\x85\x46\x2f\x7c\xc2\xaa\x69\x2b\x6d\xe5\xdb\xfe\xe4\x21\x8f\x0\x97\x21\x1d\x2\x0\x0\x0…
|
/PHP-8.3/ext/soap/tests/interop/Round4/GroupH/ |
H A D | r4_groupH_complex_doclit_007w.phpt | 24 function __construct($f, $s, $x1, $x2, $x3, public $booleanMessage) { 25 parent::__construct($f, $s, $x1, $x2, $x3);
|
H A D | r4_groupH_complex_doclit_010w.phpt | 24 function __construct($f, $s, $x1, $x2, $x3, public $booleanMessage) { 25 parent::__construct($f, $s, $x1, $x2, $x3);
|
H A D | r4_groupH_complex_doclit_008w.phpt | 24 function __construct($f, $s, $x1, $x2, $x3, public $booleanMessage) { 25 parent::__construct($f, $s, $x1, $x2, $x3);
|
/PHP-8.3/ext/gd/ |
H A D | gd.stub.php | 668 function imageline(GdImage $image, int $x1, int $y1, int $x2, int $y2, int $color): bool {} argument 670 function imagedashedline(GdImage $image, int $x1, int $y1, int $x2, int $y2, int $color): bool {} argument 672 function imagerectangle(GdImage $image, int $x1, int $y1, int $x2, int $y2, int $color): bool {} argument 674 function imagefilledrectangle(GdImage $image, int $x1, int $y1, int $x2, int $y2, int $color): bool… argument 720 function imagesetclip(GdImage $image, int $x1, int $y1, int $x2, int $y2): bool {} argument
|