Home
last modified time | relevance | path

Searched refs:source (Results 151 – 175 of 212) sorted by relevance

123456789

/PHP-7.4/ext/opcache/Optimizer/
H A Dzend_ssa.h279 #define FOREACH_PHI_SOURCE(phi, source) do { \ argument
284 source = _phi->sources[_i];
H A Dzend_ssa.c1243 static inline void zend_ssa_remove_use_of_phi_source(zend_ssa *ssa, zend_ssa_phi *phi, int source, … in zend_ssa_remove_use_of_phi_source() argument
1245 zend_ssa_phi **cur = &ssa->vars[source].phi_use_chain; in zend_ssa_remove_use_of_phi_source()
1247 cur = zend_ssa_next_use_phi_ptr(ssa, source, *cur); in zend_ssa_remove_use_of_phi_source()
1257 int source; in zend_ssa_remove_uses_of_phi_sources() local
1258 FOREACH_PHI_SOURCE(phi, source) { in zend_ssa_remove_uses_of_phi_sources()
1259 zend_ssa_remove_use_of_phi_source(ssa, phi, source, zend_ssa_next_use_phi(ssa, source, phi)); in zend_ssa_remove_uses_of_phi_sources()
/PHP-7.4/ext/bcmath/libbcmath/
H A DLICENSE31 for this service if you wish); that you receive source code or can get
43 you. You must make sure that they, too, receive or can get the source
139 making modifications to it. For a library, complete source code means
140 all the source code for all modules it contains, plus any associated
154 complete source code as you receive it, in any medium, provided that
239 source code from the same place satisfies the requirement to
240 distribute the source code, even though third parties are not
241 compelled to copy the source along with the object code.
257 derivative work of the Library even though the source code is not.
290 machine-readable source code for the Library including whatever
[all …]
/PHP-7.4/ext/intl/msgformat/
H A Dmsgformat_class.c120 ZEND_ARG_INFO(0, source)
H A Dmsgformat_helpers.cpp623 U_CFUNC void umsg_parse_helper(UMessageFormat *fmt, int *count, zval **args, UChar *source, int32_t… in umsg_parse_helper() argument
625 UnicodeString srcString(source, source_len); in umsg_parse_helper()
/PHP-7.4/ext/mbstring/libmbfl/
H A DLICENSE30 for this service if you wish); that you receive source code or can get
42 you. You must make sure that they, too, receive or can get the source
137 making modifications to it. For a library, complete source code means
138 all the source code for all modules it contains, plus any associated
151 complete source code as you receive it, in any medium, provided that
236 source code from the same place satisfies the requirement to
237 distribute the source code, even though third parties are not
238 compelled to copy the source along with the object code.
254 derivative work of the Library even though the source code is not.
287 machine-readable source code for the Library including whatever
[all …]
/PHP-7.4/build/
H A Dax_check_compile_flag.m422 # INPUT gives an alternative input source to AC_COMPILE_IFELSE.
/PHP-7.4/ext/curl/
H A Dphp_curl.h218 void _php_setup_easy_copy_handlers(php_curl *ch, php_curl *source);
/PHP-7.4/ext/soap/
H A Dphp_sdl.c236 s = strstr(ctx->sdl->source, "://"); in sdl_set_uri_credentials()
239 l1 = s ? (size_t)(s - ctx->sdl->source) : strlen(ctx->sdl->source); in sdl_set_uri_credentials()
247 ctx->sdl->source[4] == ':' && in sdl_set_uri_credentials()
262 ctx->sdl->source[4] == 's' && in sdl_set_uri_credentials()
735 ctx.sdl->source = estrdup(struri); in load_wsdl()
2945 if (sdl->source) { in make_persistent_sdl()
2946 psdl->source = strdup(sdl->source); in make_persistent_sdl()
3125 if (tmp->source) { in delete_psdl_int()
3126 free(tmp->source); in delete_psdl_int()
3391 if (tmp->source) { in delete_sdl_impl()
[all …]
H A Dphp_sdl.h62 char *source; member
/PHP-7.4/ext/oci8/tests/
H A Ddetails.inc15 …include(dirname(__FILE__)."/details_local.inc"); // this file is not part of the source distribu…
/PHP-7.4/ext/phar/
H A Dphar_path_check.re7 | This source file is subject to version 3.01 of the PHP license, |
H A Dutil.c640 int phar_copy_entry_fp(phar_entry_info *source, phar_entry_info *dest, char **error) /* {{{ */ in phar_copy_entry_fp() argument
644 if (FAILURE == phar_open_entry_fp(source, error, 1)) { in phar_copy_entry_fp()
662 phar_seek_efp(source, 0, SEEK_SET, 0, 1); in phar_copy_entry_fp()
663 link = phar_get_link_source(source); in phar_copy_entry_fp()
666 link = source; in phar_copy_entry_fp()
673 …tents of file \"%s\" to \"%s\" in phar archive \"%s\"", source->filename, dest->filename, source->… in phar_copy_entry_fp()
/PHP-7.4/sapi/phpdbg/
H A Dphpdbg.c129 phpdbg_file_source *source = (phpdbg_file_source *) Z_PTR_P(data); in php_phpdbg_destroy_file_source() local
130 destroy_op_array(&source->op_array); in php_phpdbg_destroy_file_source()
131 if (source->buf) { in php_phpdbg_destroy_file_source()
132 efree(source->buf); in php_phpdbg_destroy_file_source()
134 efree(source); in php_phpdbg_destroy_file_source()
601 phpdbg_file_source *source = zend_hash_find_ptr(&PHPDBG_G(file_sources), name); in PHP_FUNCTION() local
602 if (source) { in PHP_FUNCTION()
604 &source->op_array, in PHP_FUNCTION()
605 phpdbg_add_empty_array(Z_ARR_P(return_value), source->op_array.filename), in PHP_FUNCTION()
/PHP-7.4/ext/sockets/tests/
H A Dmcast_ipv6_recv_limited.phpt35 "source" => '2001::dead:beef',
/PHP-7.4/
H A DCODING_STANDARDS.md11 1. Document your code in source files and the manual. (tm)
52 7. Use `PHP_*` macros in the PHP source, and `ZEND_*` macros in the Zend part of
53 the source. Although the `PHP_*` macros are mostly aliased to the `ZEND_*`
224 2. Main module source file must be named `modulename.c`.
/PHP-7.4/win32/build/
H A Dconfig.w3224 // stick objects somewhere outside of the source tree
117 …ki.php.net/internals/windows/libs). Assumes that it is a sibling of this source dir (..\\deps) if …
327 …"-Wno-logical-op-parentheses -Wno-msvc-include -Wno-invalid-source-encoding -Wno-unknown-pragmas "…
/PHP-7.4/Zend/
H A Dzend_operators.c2632 ZEND_API char* ZEND_FASTCALL zend_str_tolower_copy(char *dest, const char *source, size_t length) /… in zend_str_tolower_copy() argument
2634 register unsigned char *str = (unsigned char*)source; in zend_str_tolower_copy()
2647 ZEND_API char* ZEND_FASTCALL zend_str_tolower_dup(const char *source, size_t length) /* {{{ */ in zend_str_tolower_dup() argument
2649 return zend_str_tolower_copy((char *)emalloc(length+1), source, length); in zend_str_tolower_dup()
2665 ZEND_API char* ZEND_FASTCALL zend_str_tolower_dup_ex(const char *source, size_t length) /* {{{ */ in zend_str_tolower_dup_ex() argument
2667 register const unsigned char *p = (const unsigned char*)source; in zend_str_tolower_dup_ex()
2675 if (p != (const unsigned char*)source) { in zend_str_tolower_dup_ex()
2676 memcpy(res, source, p - (const unsigned char*)source); in zend_str_tolower_dup_ex()
2678 r = (unsigned char*)p + (res - source); in zend_str_tolower_dup_ex()
H A Dzend_constants.c73 void zend_copy_constants(HashTable *target, HashTable *source) in zend_copy_constants() argument
75 zend_hash_copy(target, source, copy_zend_constant); in zend_copy_constants()
/PHP-7.4/ext/gd/tests/
H A DRochester-Regular.otf.LICENSE.txt28 including but not limited to software source code, documentation
29 source, and configuration files.
57 communication on electronic mailing lists, source code control systems,
/PHP-7.4/appveyor/
H A Dtest_task.bat103 …how-slow 1000 --set-timeout 120 -g FAIL,XFAIL,BORK,WARN,LEAK,SKIP --temp-source c:\tests_tmp --tem…
/PHP-7.4/azure/
H A Dcommunity_job.yml6 # The purpose of the job is to test open-source community projects against an aggressive
/PHP-7.4/ext/gd/libgd/
H A Dgdtest.c163 imgsrc.source = freadWrapper; in main()
/PHP-7.4/ext/standard/tests/image/
H A Diptcembed_002.phpt6 # source code to generate base64 use behind as $base64_1x1_jpeg
/PHP-7.4/ext/hash/sha3/generic64lc/
H A DKeccakP-1600-unrolling.macros12 and related or neighboring rights to the source code in this file.

Completed in 66 milliseconds

123456789