Home
last modified time | relevance | path

Searched refs:f2 (Results 1 – 25 of 92) sorted by relevance

1234

/PHP-7.4/main/
H A Dmergesort.c146 q = f2; in php_mergesort()
151 b = f2, t = l2; in php_mergesort()
211 if (f2 < l2) { in php_mergesort()
290 for (f2 = f1 + size2; f2 < last; f2 += size2) { in setup()
291 if ((cmp(f2, f2+ size) > 0) != sense) in setup()
302 l2 = f2; in setup()
303 for (f2 = f1 + size2; f2 < l2; f2 += size2) { in setup()
304 if ((cmp(f2-size, f2) > 0) != sense) { in setup()
308 f1 = f2; in setup()
313 f1 = f2; in setup()
[all …]
/PHP-7.4/tests/classes/
H A Dtype_hinting_004.phpt12 echo "in f2;\n";
30 call_user_func('f2');
152 in f2;
153 in f2;
154 in f2;
163 in C::f2 (static);
164 in C::f2 (static);
165 in C::f2 (static);
174 in C::f2 (instance);
175 in C::f2 (instance);
[all …]
H A Dtype_hinting_003.phpt14 static function f2(array $ar = NULL)
34 Test::f2(NULL);
35 Test::f2();
47 Test::f2()
49 Test::f2()
H A Dvisibility_002a.phpt9 public function f2() {}
19 public function f2() {}
25 protected function f2() {}
31 Fatal error: Access level to fail::f2() must be public (as in class same) in %s on line 22
H A Dvisibility_002b.phpt9 public function f2() {}
19 public function f2() {}
25 private function f2() {}
31 Fatal error: Access level to fail::f2() must be public (as in class same) in %s on line 22
H A Dvisibility_002c.phpt9 public function f2() {}
19 public function f2() {}
25 function f2() {}
H A Dvisibility_003c.phpt9 public function f2() {}
19 public function f2() {}
H A Dvisibility_004c.phpt9 public function f2() {}
19 public function f2() {}
H A Dvisibility_001c.phpt9 public function f2() {}
19 public function f2() {}
/PHP-7.4/ext/zlib/tests/
H A Dzlib_wrapper_ftruncate_basic.phpt12 $f2 = "zlib_wrapper_ftruncate_basic.txt.gz";
13 copy($f, $f2);
15 $h = gzopen($f2, "r");
18 unlink($f2);
20 $h = gzopen($f2, "w");
23 unlink($f2);
/PHP-7.4/ext/standard/tests/assert/
H A Dassert_basic2.phpt11 function f2()
13 echo "f2 called\n";
24 var_dump($o= assert_options(ASSERT_CALLBACK, "f2"));
34 string(2) "f2"
35 f2 called
H A Dassert_variation.phpt15 function f2()
17 echo "f2 called\n";
37 var_dump($rv = ini_set("assert.callback","f2"));
82 assert_options(ASSERT_CALLBACK) => [f2]
83 ini.get("assert.callback") => [f2]
86 f2 called
90 string(2) "f2"
92 ini.get("assert.callback") => [f2]
101 ini.get("assert.callback") => [f2]
114 ini.get("assert.callback") => [f2]
[all …]
/PHP-7.4/ext/standard/tests/streams/
H A Dbug79984.phpt44 $f2 = fopen('php://temp', 'r+b');
45 fwrite($f2, $str);
46 fseek($f2, 0, SEEK_SET);
47 stream_filter_append($f2, 'f', STREAM_FILTER_READ);
48 var_dump(strlen(stream_get_contents($f2)));
49 fclose($f2);
/PHP-7.4/Zend/tests/
H A Dgc_030.phpt16 $f2 = new foo;
17 $f1->foo = $f2;
18 $f2->foo = $f1;
19 unset($f1, $f2);
H A Dns_035.phpt11 function f2($x = \ArrayObject::STD_PROP_LIST) {
17 f2();
H A Dbug34062.phpt6 function f2() { echo "here\n"; }
16 f2(0, 0, 0); // Won't crash if less than 3 zeros here
/PHP-7.4/tests/basic/
H A Denable_post_data_reading_06.phpt95 $f2 = fopen("php://input", "r");
97 while (!feof($f1) && !feof($f2)) {
98 echo fgets($f1), fgets($f2);
H A Denable_post_data_reading_05.phpt14 $f2 = fopen("php://input", "r");
16 while (!feof($f1) && !feof($f2)) {
17 echo fgetc($f1), fgetc($f2);
H A Denable_post_data_reading_07.phpt24 $f2 = fopen("php://input", "r");
25 fseek($f2, 1, SEEK_SET);
27 echo fgetc($f2);
/PHP-7.4/ext/spl/tests/
H A Dbug61697.phpt7 function f2($class) { echo "f2: [[$class]]\n"; }
10 spl_autoload_register('f2');
/PHP-7.4/Zend/tests/generators/
H A Dbacktrace.phpt10 function f2($arg1, $arg2) {
19 $gen = f2('foo', 'bar');
25 #1 f2(foo, bar)
/PHP-7.4/ext/reflection/tests/
H A Dbug78895.phpt9 public function f2();
12 abstract public function f2();
17 function f2() {}
/PHP-7.4/ext/oci8/tests/
H A Dlob_043.phpt42 function f2($c)
50 echo "f2 ended\n";
63 $r = f2($c);
87 f2 ended
/PHP-7.4/ext/opcache/tests/
H A Dpreload_001.phpt16 var_dump(function_exists("f2"));
20 var_dump(function_exists("f2"));
/PHP-7.4/ext/standard/tests/file/
H A Dbug81145.phpt36 $f2 = fopen($dst,'rb') or die("dst open failed");
40 fseek($f2, SIZE_4G - 0x100, SEEK_SET);
41 echo (fread($f1,0x200) === fread($f2,0x200) ? "Identical" : "Copy failed");
43 fclose($f2);

Completed in 61 milliseconds

1234