Home
last modified time | relevance | path

Searched refs:pi (Results 1 – 25 of 39) sorted by last modified time

12

/PHP-7.4/
H A DNEWS2182 . Fixed bug #77743 (Incorrect pi node insertion for jmpznz with identical
H A D.gdbinit486 set $pi = (zend_property_info *)$arg0
488 set $ptr_to_val = (zval*)((char*)$pi->ce->default_properties_table + $pi->offset - $initial_offset)
489 printf "[%p] {\n", $pi
490 printf " offset = %p\n", $pi->offset
491 printf " ce = [%p] %s\n", $pi->ce, $pi->ce->name->val
493 if $pi->flags & 0x100
496 if $pi->flags & 0x200
499 if $pi->flags & 0x400
502 if $pi->flags & 0x800
505 if $pi->flags & 0x20000
[all …]
/PHP-7.4/ext/xml/
H A Dcompat.c516 XML_SetProcessingInstructionHandler(XML_Parser parser, XML_ProcessingInstructionHandler pi) in XML_SetProcessingInstructionHandler() argument
518 parser->h_pi = pi; in XML_SetProcessingInstructionHandler()
/PHP-7.4/sapi/cgi/
H A Dcgi_main.c2210 PROCESS_INFORMATION pi; local
2219 ZeroMemory(&pi, sizeof(pi));
2226 if (CreateProcessW(NULL, cmd_line, NULL, NULL, TRUE, CREATE_NO_WINDOW, NULL, NULL, &si, &pi)) {
2227 kid_cgi_ps[i] = pi.hProcess;
2228 if (!AssignProcessToJobObject(job, pi.hProcess)) {
2235 CloseHandle(pi.hThread);
/PHP-7.4/ext/opcache/Optimizer/
H A Dsccp.c2140 if (phi->pi >= 0) { in sccp_visit_phi()
2142 if (scdf_is_edge_feasible(scdf, phi->pi, phi->block)) { in sccp_visit_phi()
H A Dzend_ssa.c96 phi->pi = from; in add_pi()
234 zend_ssa_phi *pi; in place_essa_pis() local
814 if (p->pi == n) { in zend_ssa_rename()
831 } else if (p->pi < 0) { in zend_ssa_rename()
842 if (p->pi == n) { in zend_ssa_rename()
984 phi->pi = -1; in zend_build_ssa()
992 if ((*pp)->pi < 0) { in zend_build_ssa()
1088 if (phi->pi >= 0) { in zend_ssa_compute_use_def_chains()
1226 if (p->pi >= 0) { in zend_ssa_next_use_phi_ptr()
1393 if (phi->pi >= 0) { in zend_ssa_remove_predecessor()
[all …]
H A Dzend_inference.c290 if (p->pi >= 0) { in zend_ssa_find_false_dependencies()
855 if (p->pi >= 0 && p->has_range_constraint) { in zend_inference_calc_range()
1682 ssa->vars[j].definition_phi->pi >= 0 && in zend_infer_ranges_warmup()
1818 && ssa->vars[j].definition_phi->pi < 0) { in zend_infer_ranges()
3772 if (p->pi >= 0) { in zend_infer_types_ex()
H A Ddce.c446 if (phi->pi < 0) { in try_remove_trivial_phi()
H A Dzend_ssa.h65 int pi; /* if >= 0 this is actually a e-SSA Pi */ member
202 if (p->pi >= 0) { in zend_ssa_next_use_phi()
258 ((phi)->pi >= 0 ? 1 : (ssa->cfg.blocks[(phi)->block].predecessors_count))
H A Descape_analysis.c95 if (p->pi >= 0) { in zend_build_equi_escape_sets()
H A Dzend_dump.c827 if (p->pi < 0) { in zend_dump_block_header()
837 fprintf(stderr, " = Pi<BB%d>(", p->pi); in zend_dump_block_header()
1221 if (p->pi >= 0) { in zend_dump_phi_placement()
/PHP-7.4/sapi/fpm/tests/
H A Dlogtool.inc482 str_repeat('a', 964) . '", pi',
/PHP-7.4/Zend/tests/
H A Dremove_predecessor_of_pi_node.phpt2 Regression test for incorrect update of pi node users when removing a predecessor block
/PHP-7.4/ext/standard/
H A Dbasic_functions.c2950 PHP_FE(pi, arginfo_pi)
H A Dproc_open.c493 PROCESS_INFORMATION pi; in PHP_FUNCTION() local
919 memset(&pi, 0, sizeof(pi)); in PHP_FUNCTION()
952 …cok = CreateProcessW(NULL, cmdw, &security, &security, TRUE, dwCreateFlags, envpw, cwdw, &si, &pi); in PHP_FUNCTION()
973 …ok = CreateProcessW(NULL, cmdw2, &security, &security, TRUE, dwCreateFlags, envpw, cwdw, &si, &pi); in PHP_FUNCTION()
1002 childHandle = pi.hProcess; in PHP_FUNCTION()
1003 child = pi.dwProcessId; in PHP_FUNCTION()
1004 CloseHandle(pi.hThread); in PHP_FUNCTION()
H A Dmath.c576 PHP_FUNCTION(pi) in PHP_FUNCTION() argument
H A Dphp_math.h38 PHP_FUNCTION(pi);
/PHP-7.4/ext/intl/tests/
H A Dbreakiter_getPartsIterator_basic.phpt15 $pi = $bi->getPartsIterator();
16 var_dump(get_class($pi));
17 print_r(iterator_to_array($pi));
20 $pi = $bi->getPartsIterator();
21 var_dump(get_class($pi->getBreakIterator()));
22 print_r(iterator_to_array($pi));
23 var_dump($pi->getRuleStatus());
H A Dbreakiter_getPartsIterator_basic2.phpt15 $pi = $bi->getPartsIterator();
16 var_dump(get_class($pi));
17 print_r(iterator_to_array($pi));
20 $pi = $bi->getPartsIterator();
21 var_dump(get_class($pi->getBreakIterator()));
22 print_r(iterator_to_array($pi));
23 var_dump($pi->getRuleStatus());
/PHP-7.4/ext/xmlwriter/tests/
H A DOO_009.phpt21 $xw->startElement('pi');
41 <pi><?php echo "hello world"; ?>%w</pi>
H A D009.phpt21 xmlwriter_start_element($xw, 'pi');
41 <pi><?php echo "hello world"; ?>%w</pi>
/PHP-7.4/ext/standard/tests/strings/
H A Dhtml_entity_decode_html4.phpt153 "&pi;",
H A Dhtml_entity_decode_html5.phpt1614 "&pi;",
3748 &pi; => π cf80
H A Dhtmlentities_html5.phpt414 &pi; U+003C0
H A Dhtmlentities_html4.phpt209 &pi; U+003C0

Completed in 95 milliseconds

12