Home
last modified time | relevance | path

Searched refs:src (Results 176 – 200 of 258) sorted by relevance

1234567891011

/php-src/Zend/tests/
H A Dbug63217.phpt53 * @see https://github.com/php/php-src/pull/2607#issuecomment-313781748
/php-src/ext/dom/lexbor/lexbor/core/
H A Dmraw.c425 lexbor_mraw_dup_noi(lexbor_mraw_t *mraw, const void *src, size_t size) in lexbor_mraw_dup_noi() argument
427 return lexbor_mraw_dup(mraw, src, size); in lexbor_mraw_dup_noi()
/php-src/ext/standard/
H A Dpack.c180 static float php_pack_parse_float(int is_little_endian, void * src) in php_pack_parse_float() argument
186 memcpy(&m.i, src, sizeof(float)); in php_pack_parse_float()
203 static double php_pack_parse_double(int is_little_endian, void * src) in php_pack_parse_double() argument
209 memcpy(&m.i, src, sizeof(double)); in php_pack_parse_double()
H A Dcrypt_sha256.c31 char * __php_stpncpy(char *dst, const char *src, size_t len) in __php_stpncpy() argument
33 size_t n = strlen(src); in __php_stpncpy()
37 return strncpy(dst, src, len) + n; in __php_stpncpy()
H A Dfile.c1511 PHPAPI int php_copy_file(const char *src, const char *dest) in php_copy_file() argument
1513 return php_copy_file_ctx(src, dest, 0, NULL); in php_copy_file()
1518 PHPAPI int php_copy_file_ex(const char *src, const char *dest, int src_flg) in php_copy_file_ex() argument
1520 return php_copy_file_ctx(src, dest, src_flg, NULL); in php_copy_file_ex()
1525 PHPAPI int php_copy_file_ctx(const char *src, const char *dest, int src_flg, php_stream_context *ct… in php_copy_file_ctx() argument
1532 switch (php_stream_stat_path_ex(src, src_stat_flags, &src_s, ctx)) { in php_copy_file_ctx()
1574 if ((sp = expand_filepath(src, NULL)) == NULL) { in php_copy_file_ctx()
1597 srcstream = php_stream_open_wrapper_ex(src, "rb", src_flg | REPORT_ERRORS, NULL, ctx); in php_copy_file_ctx()
/php-src/docs/
H A Drelease-process.md57 - https://travis-ci.com/github/php/php-src
58 - https://cirrus-ci.com/github/php/php-src
59 - https://github.com/php/php-src/actions
111 2. Run `./scripts/dev/credits` in php-src and commit the changes to the credits
270 10. Push the changes to the `php-src`.
588 mv /path/to/repos/php/php-src/php-X.Y.Z.tar.* .
702 ./bin/news2html 'https://github.com/php/php-src/raw/php-X.Y.Z/NEWS' 'X.Y.Z' 'ChangeLog-X.php'
840 The feature freeze for `php-src` means that we will not accept any new features
965 release manager (having previously served as a `php-src` release manager),
1076 * https://github.com/php/php-src
[all …]
/php-src/ext/ftp/
H A Dftp.h202 int ftp_rename(ftpbuf_t *ftp, const char *src, const size_t src_len, const char *dest, const size_…
/php-src/
H A DCONTRIBUTING.md40 you add a link to the PR in the bug on [the bug tracker](https://github.com/php/php-src/issues)
54 You can also add pull requests to [bug reports](https://github.com/php/php-src/issues)
64 Bugs can be filed on [GitHub Issues](https://github.com/php/php-src/issues/new/choose).
91 There are a number of technical resources on php-src. Unfortunately, they are
157 <php-src>/
161 ├─ asm/ # Bundled from src/asm in https://github.com/boostorg/context
178 ├─ libbcmath/ # Forked and maintained in php-src
202 ├─ libmbfl/ # Forked and maintained in php-src
/php-src/.github/
H A DCODEOWNERS2 # or interested parties over a particular area of the php-src source code.
/php-src/ext/standard/tests/general_functions/
H A Doutput_add_rewrite_var_basic3.phpt6 session.trans_sid_tags="a=href,area=href,frame=src,form="
7 url_rewriter.tags="a=href,area=href,frame=src,form="
H A Doutput_add_rewrite_var_basic4.phpt6 session.trans_sid_tags="a=href,area=href,frame=src,form="
7 url_rewriter.tags="a=href,area=href,frame=src,form="
H A Doutput_add_rewrite_var_basic2.phpt6 session.trans_sid_tags="a=href,area=href,frame=src,form="
7 url_rewriter.tags="a=href,area=href,frame=src,form="
H A Doutput_add_rewrite_var_basic1.phpt6 session.trans_sid_tags="a=href,area=href,frame=src,form="
7 url_rewriter.tags="a=href,area=href,frame=src,form="
H A Durl_rewriting_basic1.phpt6 session.trans_sid_tags="a=href,area=href,frame=src,form="
7 url_rewriter.tags="a=href,area=href,frame=src,form="
/php-src/Zend/Optimizer/
H A Ddfa_pass.c430 HashTable *src = Z_ARRVAL_P(CT_CONSTANT_EX(op_array, send_array->op1.constant)); in zend_dfa_optimize_calls() local
436 dst = zend_new_array(zend_hash_num_elements(src)); in zend_dfa_optimize_calls()
438 ZEND_HASH_FOREACH_VAL(src, val) { in zend_dfa_optimize_calls()
450 ZEND_HASH_FOREACH_VAL(src, val) { in zend_dfa_optimize_calls()
625 zend_basic_block *src = &ssa->cfg.blocks[from]; in zend_ssa_replace_control_link() local
631 for (i = 0; i < src->successors_count; i++) { in zend_ssa_replace_control_link()
632 if (src->successors[i] == to) { in zend_ssa_replace_control_link()
633 src->successors[i] = new_to; in zend_ssa_replace_control_link()
637 if (src->len > 0) { in zend_ssa_replace_control_link()
638 opline = op_array->opcodes + src->start + src->len - 1; in zend_ssa_replace_control_link()
/php-src/ext/opcache/jit/ir/
H A Dir.c2010 ops[pos] = src;
2020 void _ir_ENTRY(ir_ctx *ctx, ir_ref src, ir_ref num) argument
2025 || ctx->ir_base[src].op == IR_END
2027 ctx->control = ir_emit2(ctx, IR_ENTRY, src, num);
2030 void _ir_BEGIN(ir_ctx *ctx, ir_ref src) argument
2033 if (src
2034 && src + 1 == ctx->insns_count
2035 && ctx->ir_base[src].op == IR_END) {
2037 ctx->control = ctx->ir_base[src].op1;
2040 ctx->control = ir_emit1(ctx, IR_BEGIN, src);
[all …]
/php-src/ext/com_dotnet/
H A Dphp_com_dotnet_internal.h119 PHP_COM_DOTNET_API zend_result php_com_copy_variant(VARIANT *dst, VARIANT *src);
H A Dcom_saproxy.c60 static inline void clone_indices(php_com_saproxy *dest, php_com_saproxy *src, int ndims) in clone_indices() argument
65 ZVAL_DUP(&dest->indices[i], &src->indices[i]); in clone_indices()
/php-src/ext/dom/lexbor/lexbor/dom/interfaces/
H A Dnode.h81 const lxb_dom_node_t *src, bool is_attr);
H A Delement.c90 const lxb_dom_element_t *src) in lxb_dom_element_interface_copy() argument
96 status = lxb_dom_node_interface_copy(&dst->node, &src->node, false); in lxb_dom_element_interface_copy()
102 attr = src->first_attr; in lxb_dom_element_interface_copy()
/php-src/.github/workflows/
H A Dnightly.yml11 if: github.repository == 'php/php-src' || github.event_name == 'workflow_dispatch'
282 if: github.repository == 'php/php-src' || github.event_name == 'workflow_dispatch'
475src/Symfony/Component/HtmlSanitizer/Tests/HtmlSanitizerCustomTest.php"); $c = str_replace("public …
477src/Symfony/Component/VarDumper/Tests/Caster/FFICasterTest.php"); $c = str_replace("*/\n public…
480 … for component in $(find src/Symfony -mindepth 2 -type f -name phpunit.xml.dist -printf '%h\n'); do
766 if: github.repository == 'php/php-src' || github.event_name == 'workflow_dispatch'
/php-src/Zend/
H A Dzend_strtod.c4540 src = digits; in zend_gcvt()
4541 *dst++ = *src++; in zend_gcvt()
4543 if (*src == '\0') { in zend_gcvt()
4547 *dst++ = *src++; in zend_gcvt()
4576 src = digits; in zend_gcvt()
4577 while (*src != '\0') { in zend_gcvt()
4578 *dst++ = *src++; in zend_gcvt()
4584 if (*src != '\0') { in zend_gcvt()
4585 *dst++ = *src++; in zend_gcvt()
4590 if (*src != '\0') { in zend_gcvt()
[all …]
/php-src/ext/fileinfo/libmagic/
H A Dsoftmagic.c1403 const unsigned char *src = s + offset; in mcopy() local
1409 src++; in mcopy()
1414 for (/*EMPTY*/; src < esrc; src += 2, dst++) { in mcopy()
1416 *dst = *src; in mcopy()
1421 *(src - 1) != '\0' : in mcopy()
1422 ((src + 1 < esrc) && in mcopy()
1423 *(src + 1) != '\0')) in mcopy()
/php-src/ext/opcache/jit/
H A Dzend_jit_ir.c1619 ref = jit_Z_PTR(jit, src); in jit_ZVAL_COPY()
1659 ref = jit_Z_LVAL(jit, src); in jit_ZVAL_COPY_2()
1669 ref = jit_Z_W2(jit, src); in jit_ZVAL_COPY_2()
1674 ref = jit_Z_PTR(jit, src); in jit_ZVAL_COPY_2()
4020 ir_ENTRY(src, label); in zend_jit_continue_entry()
4310 zend_jit_addr src; in zend_jit_store_reg() local
4350 zend_jit_addr src; in zend_jit_store_spill_slot() local
4408 if (Z_MODE(src) == IS_REG && Z_STORE(src)) { in zend_jit_store_var_if_necessary()
4417 if (Z_MODE(src) == IS_REG && Z_STORE(src)) { in zend_jit_store_var_if_necessary_ex()
4465 if (!Z_LOAD(src) && !Z_STORE(src) && Z_STORE(dst)) { in zend_jit_update_regs()
[all …]
/php-src/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_encoding.h133 void (*filter_copy)(struct _mbfl_convert_filter *src, struct _mbfl_convert_filter *dest);

Completed in 259 milliseconds

1234567891011