/PHP-8.2/Zend/Optimizer/ |
H A D | zend_dfg.c | 29 if (!zend_bitset_in(def, var_num)) { in _zend_dfg_add_use_def_op() 38 if (!zend_bitset_in(def, var_num)) { in _zend_dfg_add_use_def_op() 46 if (!zend_bitset_in(def, var_num)) { in _zend_dfg_add_use_def_op() 74 if (!zend_bitset_in(def, var_num)) { in _zend_dfg_add_use_def_op() 78 zend_bitset_incl(def, var_num); in _zend_dfg_add_use_def_op() 89 if (!zend_bitset_in(def, var_num)) { in _zend_dfg_add_use_def_op() 93 zend_bitset_incl(def, var_num); in _zend_dfg_add_use_def_op() 108 zend_bitset_incl(def, var_num); in _zend_dfg_add_use_def_op() 120 zend_bitset_incl(def, var_num); in _zend_dfg_add_use_def_op() 255 zend_bitset tmp, def, use, in, out; in zend_build_dfg() local [all …]
|
H A D | zend_dfg.h | 29 zend_bitset def; member 47 …op_array *op_array, const zend_op *opline, uint32_t build_flags, zend_bitset use, zend_bitset def);
|
H A D | escape_analysis.c | 102 int def = ssa_vars[i].definition; in zend_build_equi_escape_sets() local 103 zend_ssa_op *op = ssa->ops + def; in zend_build_equi_escape_sets() 104 zend_op *opline = op_array->opcodes + def; in zend_build_equi_escape_sets() 150 static bool is_allocation_def(zend_op_array *op_array, zend_ssa *ssa, int def, int var, const zend_… in is_allocation_def() argument 152 zend_ssa_op *ssa_op = ssa->ops + def; in is_allocation_def() 153 zend_op *opline = op_array->opcodes + def; in is_allocation_def() 214 static bool is_local_def(zend_op_array *op_array, zend_ssa *ssa, int def, int var, const zend_scrip… in is_local_def() argument 216 zend_ssa_op *op = ssa->ops + def; in is_local_def() 217 zend_op *opline = op_array->opcodes + def; in is_local_def()
|
/PHP-8.2/ext/standard/tests/strings/ |
H A D | bug23650.phpt | 9 4:<abc - def> 10 5:abc - def 23 5:abc - def 28 4:<abc - def> 29 5:abc - def
|
H A D | substr_replace_array.phpt | 6 $arr = array('abc' => 'llsskdkk','def' => 'llsskjkkdd', 4 => 'hello', 42 => 'world'); 16 [def] => zzzdd
|
/PHP-8.2/ext/mbstring/tests/ |
H A D | mb_parse_str.phpt | 10 "foo=abc&bar=def", 11 "%2bfoo=def&-bar=jkl", 12 "foo[]=abc&foo[]=def&foo[]=ghi&bar[]=jkl" 31 string(3) "def" 37 string(3) "def" 49 string(3) "def"
|
H A D | mb_parse_str02.phpt | 10 "foo=abc#bar=def&fubar=ghi", 11 "%2bfoo=def&-bar=jkl#+fubar", 12 " foo[]=abc&foo[]=def#foo[]=ghi#bar[]=#foo[]&fubar[]==" 33 string(3) "def" 42 string(3) "def" 57 string(3) "def"
|
H A D | mb_stristr_empty_needle.phpt | 10 $string_ascii = 'abc def'; 27 string(7) "abc def" 28 string(7) "abc def"
|
H A D | mb_strstr_empty_needle.phpt | 10 $string_ascii = 'abc def'; 27 string(7) "abc def" 28 string(7) "abc def"
|
H A D | mb_ereg_replace.phpt | 13 print mb_ereg_replace( '([a-z]+)','[\\1]', 'abc def ghi' ); 17 [abc] [def] [ghi]
|
H A D | mb_ereg_match_basic.phpt | 19 $string_ascii = 'abc def, 0123456789'; 24 var_dump(mb_ereg_match('.*def', $string_ascii)); 28 var_dump(mb_ereg_match('def', $string_ascii));
|
H A D | gh10627.phpt | 11 $data = [$str => 'abc', 'abc' => 'def']; 25 string(3) "def"
|
H A D | mb_strrchr_empty_needle.phpt | 10 $string_ascii = 'abc def'; 29 string(7) "abc def"
|
/PHP-8.2/ext/spl/tests/ |
H A D | observer_005.phpt | 8 public $def = 24; 78 ["def"]=> 88 ["def"]=> 98 ["def"]=> 112 ["def"]=> 128 ["def"]=> 146 ["def"]=> 156 ["def"]=> 166 ["def"]=> 180 ["def"]=> [all …]
|
/PHP-8.2/ext/simplexml/tests/ |
H A D | bug38424.phpt | 10 $str = "abc & def" ; 26 <xml a1="abc &amp; def" a2="abc &amp; def" a3="abc & def" a4="abc & def"/>
|
/PHP-8.2/ext/pcre/tests/ |
H A D | null_bytes.phpt | 22 var_dump(preg_match("/abc\0def/", "abc")); 23 var_dump(preg_match("/abc\0def/", "abc\0def")); 24 var_dump(preg_match("/abc\0def/", "abc\0fed")); 26 var_dump(preg_match("[abc\0def]", "abc")); 27 var_dump(preg_match("[abc\0def]", "abc\0def")); 28 var_dump(preg_match("[abc\0def]", "abc\0fed"));
|
/PHP-8.2/ext/dom/tests/ |
H A D | domxpath.phpt | 31 $xpath->registerNamespace("def", "urn::default"); 32 $nodelist = $xpath->query("//def:child"); 37 $count = $xpath->evaluate("count(//def:child)"); 51 $avg = $xpath->evaluate('number(php:function("MyAverage", //def:testnode))'); 56 $avg = $xpath->evaluate('number(php:function("non_existent", //def:testnode))'); 62 $avg = $xpath->evaluate('number(php:function("non_existent", //def:testnode))');
|
/PHP-8.2/ext/curl/tests/ |
H A D | curl_copy_handle_variation5.phpt | 23 $filename = __DIR__ . '/def.txt'; 45 string(%d) "def.txt|application/octet-stream|11" 46 string(%d) "def.txt|application/octet-stream|11" 51 @unlink(__DIR__ . '/def.txt');
|
/PHP-8.2/ext/filter/tests/ |
H A D | 041.phpt | 10 abc=dir; def=true; abc=root; xyz="foo bar"; 16 var_dump(filter_input(INPUT_COOKIE, "def")); 25 ["def"]=>
|
/PHP-8.2/Zend/tests/ |
H A D | bug65419.phpt | 7 static function def() 19 ghi::def();
|
/PHP-8.2/ext/ffi/tests/ |
H A D | bug78714.phpt | 10 $def = 'char * __cdecl get_zend_version(void);'; 11 $ffi = ffi_cdef($def, ffi_get_php_dll_name());
|
/PHP-8.2/Zend/tests/traits/ |
H A D | bug55137.phpt | 8 private static function bar() { echo "def\n"; } 26 def
|
/PHP-8.2/ext/mysqli/tests/ |
H A D | 047.phpt | 73 ["def"]=> 102 ["def"]=> 133 ["def"]=> 161 ["def"]=> 191 ["def"]=> 219 ["def"]=>
|
/PHP-8.2/ext/oci8/tests/ |
H A D | fetch_all5.phpt | 16 "insert into fetch_all5_tab values (2, 'def')", 77 string(3) "def" 99 string(3) "def"
|
/PHP-8.2/Zend/ |
H A D | zend_vm_gen.php | 1521 foreach ($specs as $num => $def) { 1526 out($f, "$prolog$def,\n"); 2232 function parse_operand_spec($def, $lineno, $str, &$flags) { argument 2253 function parse_ext_spec($def, $lineno, $str) { argument 2268 function parse_spec_rules($def, $lineno, $str) { argument 2375 function gen_vm($def, $skel) { argument 2381 $in = @file($def); 2383 die("ERROR: Cannot open definition file '$def'\n"); 2386 $definition_file = realpath($def); 2430 $flags |= parse_ext_spec($def, $lineno, $m[7]); [all …]
|