Home
last modified time | relevance | path

Searched refs:x (Results 426 – 450 of 1790) sorted by relevance

1...<<11121314151617181920>>...72

/PHP-8.3/ext/random/
H A Dgammasection.c37 static double gamma_low(double x) in gamma_low() argument
39 return x - nextafter(x, -DBL_MAX); in gamma_low()
42 static double gamma_high(double x) in gamma_high() argument
44 return nextafter(x, DBL_MAX) - x; in gamma_high()
47 static double gamma_max(double x, double y) in gamma_max() argument
49 return (fabs(x) > fabs(y)) ? gamma_high(x) : gamma_low(y); in gamma_max()
/PHP-8.3/ext/opcache/tests/jit/
H A Dassign_040.phpt12 public string $x;
16 $test->x = "";
17 $r =& $test->x;
27 Cannot assign null to reference held by property Test::$x of type string
H A Dfetch_r_001.phpt10 $x = [&$v];
11 $y = 'x';
12 $$y == [&$x[0]];
H A Dinc_002.phpt15 $x = 1;
16 ++$x; // reg -> mem
17 var_dump($x);
H A Dinc_010.phpt15 $x = 1.0;
16 ++$x; // reg -> mem
17 var_dump($x);
H A Dinc_004.phpt15 $x = 1;
16 ++$x; // reg -> reg
17 return $x;
H A Dinc_012.phpt15 $x = 1.0;
16 ++$x; // reg -> reg
17 return $x;
H A Dgh8461-006.phpt17 $x = 0;
20 global $x;
21 $x += 1;
44 var_dump($initialRequest ? $x : $y);
/PHP-8.3/sapi/phpdbg/tests/
H A Dexceptions_003.phpt16 >00005: x();
19 prompt> >00005: x();
26 >00005: x();
40 x();
/PHP-8.3/ext/gd/libgd/
H A Dgdparttopng.c15 int x, y, w, h; in main() local
29 x = atoi (argv[3]); in main()
34 printf ("Extracting from (%d, %d), size is %dx%d\n", x, y, w, h); in main()
36 im = gdImageCreateFromGd2Part (in, x, y, w, h); in main()
H A Dgd2time.c17 int x, y, w, h; in main() local
29 x = atoi (argv[3]); in main()
34 printf ("Extracting %d times from (%d, %d), size is %dx%d\n", c, x, y, w, h); in main()
46 im = gdImageCreateFromGd2Part (in, x, y, w, h); in main()
/PHP-8.3/ext/session/tests/
H A Dbug71972.phpt17 for ( $x=2; $x < 20; $x++) {
18 cyclic_ref($x);
/PHP-8.3/ext/standard/tests/array/
H A Darray_sum_objects_operation_no_cast_FFI.phpt8 $x = FFI::cdef()->new("int[2]");
9 $x[0] = 10;
10 $x[1] = 25;
12 $input = [$x, 1];
H A Dbug72369.phpt5 $x = 'xxx';
6 $d = ['test' => &$x];
7 unset($x);
/PHP-8.3/Zend/tests/
H A Dbug70873.phpt7 private static $x = 1;
12 var_dump(self::$x);
18 var_dump(A::$x);
30 Fatal error: Uncaught Error: Cannot access private property B::$x in %sbug70873.php:%d
H A Dforeach_008.phpt6 foreach ($a as &$x) {
8 echo "$x - $y\n";
9 if ($x == 0 && $y == 1) {
H A Dns_016.phpt7 function strlen($x) {
11 $x = "test\\ns1\\strlen";
12 echo $x("Hello"),"\n";
H A Dtemporary_cleaning_011.phpt11 $x = 0;
12 $c = [[$x,$x]];
H A Dcall_user_func_005.phpt7 public static function __callstatic($x, $y) {
8 var_dump($x,$y);
13 return foo::x(function &($a=1,$b) { });
22 string(1) "x"
/PHP-8.3/ext/opcache/tests/opt/
H A Ddce_007.phpt14 function esc($x) {
15 $a = [$x];
31 0000 CV0($x) = RECV 1
32 0001 CV1($a) = INIT_ARRAY 1 (packed) CV0($x) NEXT
/PHP-8.3/ext/spl/tests/
H A Dfixedarray_024.phpt5 $x = new SplFixedArray(1);
6 $z = (array)$x;
7 $y = clone $x;
/PHP-8.3/ext/ffi/tests/
H A Dgh9697.phpt9 $x = FFI::cdef()->new('int');
10 array_walk($x, function($x) { echo "test\n"; });
/PHP-8.3/ext/reflection/tests/
H A Dbug69802.phpt5 $f = function(stdClass $x): stdClass {};
14 string(1) "x"
21 Parameter #0 [ <required> stdClass $x ]
26 Parameter #0 [ <required> stdClass $x ]
/PHP-8.3/Zend/tests/type_declarations/variance/
H A Dclass_order_autoload_error2.phpt10 public function method(B $x) {}
14 public function method(C $x) {}
27 Fatal error: Declaration of B::method(C $x) must be compatible with A::method(B $x) in %s on line %d
H A Dparent_in_class_success.phpt9 public function method(parent $x) {}
12 public function method(P2 $x) {}
18 public function method($x): parent {}
21 public function method($x): parent {}

Completed in 37 milliseconds

1...<<11121314151617181920>>...72