/PHP-8.1/Zend/tests/attributes/ |
H A D | 028_grouped.phpt | 21 $sources = [ 27 foreach ($sources as $ref) {
|
H A D | 001_placement.phpt | 30 $sources = [ 43 foreach ($sources as $r) {
|
/PHP-8.1/sapi/fpm/tests/ |
H A D | logreader.inc | 26 private array $sources = []; 50 return $this->sources[$this->currentSourceName]; 62 if ( ! isset($this->sources[$name])) { 63 $this->sources[$name] = new LogStreamSource($stream); 76 if ( ! isset($this->sources[$name])) { 77 $this->sources[$name] = new LogFileSource($filePath); 119 $hasMultipleDescriptors = count($this->sources) > 1; 121 foreach ($this->sources as $name => $source) {
|
/PHP-8.1/Zend/Optimizer/ |
H A D | zend_ssa.c | 850 p->sources[j] = var[p->var]; in zend_ssa_rename() 863 p->sources[j] = var[p->var]; in zend_ssa_rename() 881 q->sources[j] = p->ssa_var; in zend_ssa_rename() 1119 ZEND_ASSERT(phi->sources[0] >= 0); in zend_ssa_compute_use_def_chains() 1145 ZEND_ASSERT(phi->sources[j] >= 0); in zend_ssa_compute_use_def_chains() 1257 if (p->sources[j] == var) { in zend_ssa_next_use_phi_ptr() 1333 if (phi->sources[j] == var_num) { in zend_ssa_remove_phi_source() 1368 if (phi->sources[i] == var_num) { in zend_ssa_remove_uses_of_var() 1610 if (phi->sources[j] == new) { in zend_ssa_rename_var_uses() 1617 if (phi->sources[j] == new) { in zend_ssa_rename_var_uses() [all …]
|
H A D | zend_ssa.h | 74 int *sources; /* Array of SSA IDs that produce this var. member 212 if (p->sources[j] == var) { in zend_ssa_next_use_phi() 290 ZEND_ASSERT(_phi->sources[_i] >= 0); \ 291 source = _phi->sources[_i];
|
H A D | zend_inference.c | 527 if (ssa_vars[p->sources[0]].no_val) { in zend_ssa_find_false_dependencies() 529 zend_bitset_incl(worklist, p->sources[0]); in zend_ssa_find_false_dependencies() 533 ZEND_ASSERT(p->sources[j] >= 0); in zend_ssa_find_false_dependencies() 534 if (ssa->vars[p->sources[j]].no_val) { in zend_ssa_find_false_dependencies() 1102 int src1 = p->sources[0]; in zend_inference_calc_range() 1123 && p->sources[1] == var in zend_inference_calc_range() 1137 && p->sources[1] == var in zend_inference_calc_range() 1179 *tmp = ssa->var_info[p->sources[0]].range; in zend_inference_calc_range() 1240 ZEND_ASSERT(p->sources[i] >= 0); in zend_inference_calc_range() 4014 ZEND_ASSERT(p->sources[i] >= 0); in zend_infer_types_ex() [all …]
|
H A D | escape_analysis.c | 95 union_find_unite(parent, size, i, p->sources[0]); in zend_build_equi_escape_sets() 98 union_find_unite(parent, size, i, p->sources[j]); in zend_build_equi_escape_sets()
|
H A D | ssa_integrity.c | 291 int source = phi->sources[i]; in ssa_verify_integrity() 304 if (phi->sources[j] == source && phi->use_chains[j]) { in ssa_verify_integrity()
|
H A D | sccp.c | 2092 ZEND_ASSERT(phi->sources[0] >= 0); in sccp_visit_phi() 2094 …join_phi_values(&result, &ctx->values[phi->sources[0]], ssa->vars[phi->ssa_var].escape_state != ES… in sccp_visit_phi() 2098 ZEND_ASSERT(phi->sources[i] >= 0); in sccp_visit_phi() 2101 scp_dump_value(&ctx->values[phi->sources[i]]); in sccp_visit_phi() 2104 …join_phi_values(&result, &ctx->values[phi->sources[i]], ssa->vars[phi->ssa_var].escape_state != ES… in sccp_visit_phi()
|
/PHP-8.1/ext/opcache/tests/ |
H A D | phi_remove_002.phpt | 2 Phi sources remove 002
|
H A D | phi_remove_001.phpt | 2 Phi sources remove 001
|
/PHP-8.1/ext/odbc/tests/ |
H A D | odbc_data_source_001.phpt | 9 die("skip no data sources defined on this system");
|
/PHP-8.1/ext/sockets/tests/ |
H A D | socket_set_option_in6_pktinfo.phpt | 30 //See do_ipv6_getsockopt() on the kernel sources
|
/PHP-8.1/ext/curl/tests/ |
H A D | curl_multi_getcontent_basic3.phpt | 2 Curl_multi_getcontent() basic test with different sources (local file/http)
|
/PHP-8.1/docs/ |
H A D | unix-build-system.md | 53 PHP_NEW_EXTENSION(extname, sources [, shared [,sapi_class[, extra-cflags]]]) 102 PHP_SELECT_SAPI(name, type, sources.c) 116 The foundation for the new system is the flexible handling of sources and their
|
H A D | parameter-parsing-api.md | 132 types (it can be found in `./scripts/dev/` directory of PHP sources): 135 php ./scripts/dev/check_parameters.php /path/to/your/sources/
|
H A D | self-contained-extensions.md | 72 `LTLIBRARY_SOURCES` specifies the names of the sources files. You can name an
|
/PHP-8.1/ |
H A D | buildconf | 32 installing Autoconf and running buildconf is not needed. For the PHP sources
|
H A D | README.md | 75 successful compilation of the sources to run this test suite.
|
/PHP-8.1/Zend/ |
H A D | zend_execute.h | 99 (ref)->sources 105 (ZEND_PROPERTY_INFO_SOURCE_IS_LIST((ref)->sources.list) \ 106 ? ZEND_PROPERTY_INFO_SOURCE_TO_LIST((ref)->sources.list)->ptr[0] \ 107 : (ref)->sources.ptr)
|
H A D | zend_types.h | 521 zend_property_info_source_list sources; member 1053 _ref->sources.ptr = NULL; \ 1064 _ref->sources.ptr = NULL; \ 1076 _ref->sources.ptr = NULL; \ 1088 _ref->sources.ptr = NULL; \
|
/PHP-8.1/ext/opcache/jit/ |
H A D | zend_jit_trace.c | 739 phi->sources[0] = STACK_VAR(stack, k); in zend_jit_trace_add_phis() 740 phi->sources[1] = -1; in zend_jit_trace_add_phis() 776 phi->sources[0] = STACK_VAR(stack, i); in zend_jit_trace_add_call_phis() 777 phi->sources[1] = -1; in zend_jit_trace_add_call_phis() 808 phi->sources[0] = STACK_VAR(stack, i); in zend_jit_trace_add_ret_phis() 809 phi->sources[1] = -1; in zend_jit_trace_add_ret_phis() 3084 i = phi->sources[1]; in zend_jit_trace_allocate_registers() 3194 if (intervals[phi->sources[1]] in zend_jit_trace_allocate_registers() 3367 int use = phi->sources[1]; in zend_jit_trace_allocate_registers() 3388 use = phi->sources[0]; in zend_jit_trace_allocate_registers() [all …]
|
H A D | zend_jit.c | 1751 if (phi->pi == i && phi->sources[0] >= 0) { in zend_jit_compute_liveness() 1752 if (zend_bitset_in(candidates, phi->sources[0])) { in zend_jit_compute_liveness() 1753 zend_bitset_incl(live, phi->sources[0]); in zend_jit_compute_liveness() 1760 if (phi->sources[k] >= 0 && zend_bitset_in(candidates, phi->sources[k])) { in zend_jit_compute_liveness() 1761 zend_bitset_incl(live, phi->sources[k]); in zend_jit_compute_liveness() 1898 src = phi->sources[0]; in zend_jit_compute_liveness() 1904 src = phi->sources[k]; in zend_jit_compute_liveness() 1910 src = ssa->vars[src].definition_phi->sources[0]; in zend_jit_compute_liveness() 2523 src = phi->sources[0]; in zend_jit_allocate_registers() 2539 src = phi->sources[k]; in zend_jit_allocate_registers() [all …]
|
/PHP-8.1/build/ |
H A D | php.m4 | 180 dnl PHP_ADD_SOURCES(source-path, sources [, special-flags [, type]]) 182 dnl Adds sources which are located relative to source-path to the array of type 221 dnl PHP_ADD_SOURCES_X(source-path, sources[, special-flags[, target-var[, shared]]]) 225 dnl from the sources. Should not be used directly. 239 dnl Iterate over the sources. 844 dnl PHP_SELECT_SAPI(name, type[, sources [, extra-cflags [, build-target]]]) 905 dnl PHP_NEW_EXTENSION(extname, sources [, shared [, sapi_class [, extra-cflags [, cxx [, zend_ext]]… 910 dnl "sources" is a list of files relative to the subdir which are used to build 2327 dnl PHP_INIT_DTRACE(providerdesc, header-file, sources [, module])
|
/PHP-8.1/ext/pdo_odbc/tests/ |
H A D | long_columns.phpt | 31 // 2. in Control Panel, search for ODBC and open "Setup data sources (ODBC)"
|