Home
last modified time | relevance | path

Searched refs:from (Results 1 – 25 of 1416) sorted by path

12345678910>>...57

/php-src/
H A D.gdbinit8 but we could get the resource from the argument
H A D.gitignore76 # Makefile(s) generated from Makefile fragment templates by `./configure`
100 # Manual (man 1 and 8) pages generated from templates for *nix alike systems
H A DCODING_STANDARDS.md12 1. PHP is implemented in C99. The optional fixed-width integers from
18 For instance, `function int mail(char *to, char *from)` should NOT free `to`
19 and/or `from`.
H A DCONTRIBUTING.md136 can check the XML source out from Subversion and edit that and build it
165 ├─ asm/ # Bundled from src/asm in https://github.com/boostorg/context
199 ├─ libmagic.patch # Modifications patch from upstream libmagic
200 ├─ magicdata.patch # Modifications patch from upstream libmagic
337 confirmation from the release manager for the given branch.
382 needed for later branches (i.e. fixes for features which were dropped from
404 6. If you modified a function that is callable from PHP, prepend PHP to the
414 An Example from the git project (commit 2b34e486bc):
H A DLICENSE19 derived from this software without prior written permission. For
22 4. Products derived from this software may not be called "PHP", nor
24 from group@php.net. You may indicate that your software works in
29 license from time to time. Each version will be given a
41 "This product includes PHP software, freely available from
H A DNEWS12 . Enabled ifunc checks on FreeBSD from the 12.x releases. (Freaky)
188 . Fixed bug GH-12532 (PharData created from zip has incorrect timestamp).
214 SYN packets from the client. (David Carlier)
256 . Changed return type of long2ip to string from string|false. (Jorg Sowa)
277 <<< NOTE: Insert NEWS from last stable release here prior to actual release! >>>
H A DREADME.REDIST.BINS15 15. ext/phar/zip.c portion extracted from libzip
17 17. ext/mbstring/ucgendat portions based on the ucgendat.c from the OpenLDAP
137 may be used to endorse or promote products derived from this software
159 This code comes from John the Ripper password cracker, with reentrant
237 products derived from this software without specific prior written
308 arising from the use of this software.
344 may be used to endorse or promote products derived from this software
401 endorse or promote products derived from this software without
563 15. ext/phar/zip.c portion extracted from libzip
581 products derived from this software without specific prior
[all …]
H A DREADME.md13 web development. Fast, flexible and pragmatic, PHP powers everything from your
31 For Windows, the PHP binaries can be obtained from
41 For a minimal PHP build from Git, you will need autoconf, bison, and re2c. For
88 ## Installing PHP built from source
H A DUPGRADING79 . The JIT config defaults changed from opcache.jit=tracing and
438 has been increased from '10' to '12'.
474 the IANA identifier from a given timezone.
496 . Added pcntl_getcpu to get the cpu id from where the current process runs.
H A DUPGRADING.INTERNALS29 * The zend_object_iterator_funcs valid member has changed its signature from
41 inet_pton() from arpa/inet.h or ws2tcpip.h on Windows.
43 * zend_mm_set_custom_debug_handlers() has been removed from ZendMM, use
46 * zend_mm_set_custom_handlers() has changed its signature from
57 * zend_mm_get_custom_handlers() has changed its signature from
68 * __zend_malloc() has changed their signature from
72 * __zend_calloc() has changed their signature from
76 * __zend_realloc() has changed their signature from
152 - New public APIs are available to handle callbacks from XPath, see
159 from namespace_compat.h instead.
[all …]
/php-src/.github/
H A DCODEOWNERS3 # While requesting a review from someone does not obligate that person to
/php-src/TSRM/
H A DLICENSE12 may be used to endorse or promote products derived from this software
/php-src/Zend/
H A DLICENSE19 or promote products derived from this software without prior
20 permission from Zend Technologies Ltd. For written permission,
24 of the license from time to time. Each version will be given a
H A DREADME.md26 Since PHP 5.3.11 it is possible to prevent shared extensions from unloading so
125 definitions. It is included from `zend_compile.h`. The second one is an executor
126 code itself. It is included from `zend_execute.c`.
/php-src/Zend/Optimizer/
H A Ddfa_pass.c623 static void zend_ssa_replace_control_link(zend_op_array *op_array, zend_ssa *ssa, int from, int to,… in zend_ssa_replace_control_link() argument
625 zend_basic_block *src = &ssa->cfg.blocks[from]; in zend_ssa_replace_control_link()
693 replace_predecessor(ssa, new_to, to, from); in zend_ssa_replace_control_link()
H A Dscdf.c54 void scdf_mark_edge_feasible(scdf_ctx *scdf, int from, int to) { in scdf_mark_edge_feasible() argument
55 uint32_t edge = scdf_edge(&scdf->ssa->cfg, from, to); in scdf_mark_edge_feasible()
62 DEBUG_PRINT("Marking edge %d->%d feasible\n", from, to); in scdf_mark_edge_feasible()
H A Dscdf.h78 static inline uint32_t scdf_edge(const zend_cfg *cfg, int from, int to) { in scdf_edge() argument
85 if (cfg->predecessors[edge] == from) { in scdf_edge()
92 static inline bool scdf_is_edge_feasible(const scdf_ctx *scdf, int from, int to) { in scdf_is_edge_feasible() argument
93 uint32_t edge = scdf_edge(&scdf->ssa->cfg, from, to); in scdf_is_edge_feasible()
97 void scdf_mark_edge_feasible(scdf_ctx *scdf, int from, int to);
H A Dzend_ssa.c60 …st zend_op_array *op_array, const zend_dfg *dfg, const zend_ssa *ssa, int from, int to, int var) /… in needs_pi() argument
72 from_block = &ssa->cfg.blocks[from]; in needs_pi()
88 return !will_rejoin(&ssa->cfg, dfg, to_block, other_successor, from, var); in needs_pi()
94 int from, int to, int var) /* {{{ */ in add_pi() argument
97 if (!needs_pi(op_array, dfg, ssa, from, to, var)) { in add_pi()
109 phi->pi = from; in add_pi()
1455 void zend_ssa_remove_predecessor(zend_ssa *ssa, int from, int to) /* {{{ */ in zend_ssa_remove_predecessor() argument
1467 if (predecessors[j] == from) { in zend_ssa_remove_predecessor()
1482 if (phi->pi == from) { in zend_ssa_remove_predecessor()
H A Dzend_ssa.h153 void zend_ssa_remove_predecessor(zend_ssa *ssa, int from, int to);
/php-src/Zend/asm/
H A Djump_arm64_aapcs_elf_gas.S83 # restore RSP (pointing to context-data) from X1
100 # return transfer_t from jump
108 # restore stack from GP + FPU
H A Djump_arm64_aapcs_macho_gas.S81 ; restore RSP (pointing to context-data) from X1
98 ; return transfer_t from jump
106 ; restore stack from GP + FPU
H A Djump_arm64_aapcs_pe_armasm.asm95 ; restore RSP (pointing to context-data) from X1
120 ; return transfer_t from jump
128 ; restore stack from GP + FPU
H A Djump_arm_aapcs_elf_gas.S63 @ restore RSP (pointing to context-data) from A2
76 @ return transfer_t from jump
H A Djump_arm_aapcs_macho_gas.S69 @ restore RSP (pointing to context-data) from A2
87 @ return transfer_t from jump
H A Djump_i386_ms_pe_masm.asm69 ; restore ESP (pointing to context-data) from ECX

Completed in 62 milliseconds

12345678910>>...57