Home
last modified time | relevance | path

Searched refs:src (Results 1 – 25 of 184) sorted by path

12345678

/PHP-7.4/
H A D.gitignore278 !/ext/bcmath/libbcmath/src/config.h
H A DCONTRIBUTING.md134 <php-src>/
154 ├─ libbcmath/ # Forked and maintained in php-src
178 ├─ libmbfl/ # Forked and maintained in php-src
201 ├─ libxmlrpc/ # Forked and maintained in php-src
H A DREADME.md5 src="https://www.php.net/images/logos/new-php-logo.svg"
17 [![Build status](https://travis-ci.org/php/php-src.svg?branch=master)](https://travis-ci.org/php/ph…
18 …or.com/api/projects/status/meyur6fviaxgdwdy?svg=true)](https://ci.appveyor.com/project/php/php-src)
19 [![Build Status](https://dev.azure.com/phpazuredevops/php/_apis/build/status/php.php-src?branchName…
95 the [GitHub mirror repository](https://github.com/php/php-src) and sending a
H A DUPGRADING520 See <https://github.com/php/php-src/pull/3624>.
H A Dconfigure.ac1424 dnl See https://github.com/php/php-src/pull/3017
/PHP-7.4/Zend/tests/
H A Dbug63217.phpt51 * @see https://github.com/php/php-src/pull/2607#issuecomment-313781748
H A Dconcat_002.phpt9 * @see https://github.com/php/php-src/commit/29397f8fd2b4bc8d95e18448ca2d27a62241a407
/PHP-7.4/Zend/
H A Dzend_API.c1261 zval *src = class_type->default_properties_table; in _object_properties_init() local
1263 zval *end = src + class_type->default_properties_count; in _object_properties_init()
1267 ZVAL_COPY_OR_DUP_PROP(dst, src); in _object_properties_init()
1268 src++; in _object_properties_init()
1270 } while (src != end); in _object_properties_init()
1273 ZVAL_COPY_PROP(dst, src); in _object_properties_init()
1274 src++; in _object_properties_init()
1276 } while (src != end); in _object_properties_init()
H A Dzend_builtin_functions.c821 static void copy_constant_array(zval *dst, zval *src) /* {{{ */ in copy_constant_array() argument
827 array_init_size(dst, zend_hash_num_elements(Z_ARRVAL_P(src))); in copy_constant_array()
828 ZEND_HASH_FOREACH_KEY_VAL_IND(Z_ARRVAL_P(src), idx, key, val) { in copy_constant_array()
H A Dzend_compile.c35 #define SET_NODE(target, src) do { \ argument
36 target ## _type = (src)->op_type; \
37 if ((src)->op_type == IS_CONST) { \
40 target = (src)->u.op; \
44 #define GET_NODE(target, src) do { \ argument
45 (target)->op_type = src ## _type; \
49 (target)->u.op = src; \
3576 HashTable *src = Z_ARRVAL(array.u.constant); in zend_compile_func_in_array() local
3582 ZEND_HASH_FOREACH_VAL(src, val) { in zend_compile_func_in_array()
3594 ZEND_HASH_FOREACH_VAL(src, val) { in zend_compile_func_in_array()
[all …]
H A Dzend_execute.c3540 zval *src; in zend_copy_extra_args() local
3556 src = EX_VAR_NUM(num_args - 1); in zend_copy_extra_args()
3562 type_flags |= Z_TYPE_INFO_P(src); in zend_copy_extra_args()
3563 ZVAL_COPY_VALUE((zval*)(((char*)src) + delta), src); in zend_copy_extra_args()
3564 ZVAL_UNDEF(src); in zend_copy_extra_args()
3565 src--; in zend_copy_extra_args()
3572 if (Z_REFCOUNTED_P(src)) { in zend_copy_extra_args()
3576 src--; in zend_copy_extra_args()
3770 zval *src = ZEND_CALL_ARG(call, 1); in zend_vm_stack_copy_call_frame() local
3773 ZVAL_COPY_VALUE(dst, src); in zend_vm_stack_copy_call_frame()
[all …]
H A Dzend_generators.c539 static void zend_generator_merge_child_nodes(zend_generator_node *dest, zend_generator_node *src, z… in zend_generator_merge_child_nodes() argument
542 ZEND_ASSERT(src->children > 1); in zend_generator_merge_child_nodes()
543 ZEND_HASH_FOREACH_NUM_KEY(src->child.ht, leaf) { in zend_generator_merge_child_nodes()
H A Dzend_inheritance.c1164 zval *src, *dst, *end; in zend_do_inheritance_ex() local
1174 src--; in zend_do_inheritance_ex()
1189 src--; in zend_do_inheritance_ex()
1199 src--; in zend_do_inheritance_ex()
1200 ZVAL_COPY_PROP(dst, src); in zend_do_inheritance_ex()
1211 zval *src, *dst, *end; in zend_do_inheritance_ex() local
1221 src--; in zend_do_inheritance_ex()
1242 src--; in zend_do_inheritance_ex()
1246 ZVAL_INDIRECT(dst, src); in zend_do_inheritance_ex()
1257 src--; in zend_do_inheritance_ex()
[all …]
H A Dzend_language_scanner.l125 char *src = str, *dest = str; in BEGIN_EXTERN_C() local
126 while (*src != '\0') { in BEGIN_EXTERN_C()
127 if (*src != '_') { in BEGIN_EXTERN_C()
128 *dest = *src; in BEGIN_EXTERN_C()
133 src++; in BEGIN_EXTERN_C()
H A Dzend_llist.c149 ZEND_API void zend_llist_copy(zend_llist *dst, zend_llist *src) in zend_llist_copy() argument
153 zend_llist_init(dst, src->size, src->dtor, src->persistent); in zend_llist_copy()
154 ptr = src->head; in zend_llist_copy()
H A Dzend_llist.h55 ZEND_API void zend_llist_copy(zend_llist *dst, zend_llist *src);
H A Dzend_objects.c206 zval *src = old_object->properties_table; in zend_objects_clone_members() local
208 zval *end = src + old_object->ce->default_properties_count; in zend_objects_clone_members()
212 ZVAL_COPY_VALUE_PROP(dst, src); in zend_objects_clone_members()
221 src++; in zend_objects_clone_members()
223 } while (src != end); in zend_objects_clone_members()
H A Dzend_portability.h516 # define va_copy(dest, src) __va_copy((dest), (src)) argument
518 # define va_copy(dest, src) memcpy(&(dest), &(src), sizeof(va_list)) argument
H A Dzend_smart_str.h27 smart_str_appendl_ex((dest), (src), strlen(src), (what))
28 #define smart_str_appends(dest, src) \ argument
29 smart_str_appendl((dest), (src), strlen(src))
34 #define smart_str_appendl(dest, src, len) \ argument
36 #define smart_str_append(dest, src) \ argument
37 smart_str_append_ex((dest), (src), 0)
40 #define smart_str_sets(dest, src) \ argument
41 smart_str_setl((dest), (src), strlen(src));
126 smart_str_appendl_ex(dest, ZSTR_VAL(src), ZSTR_LEN(src), persistent); in smart_str_append_ex()
130 if (src->s && ZSTR_LEN(src->s)) { in smart_str_append_smart_str_ex()
[all …]
H A Dzend_smart_string.h31 smart_string_appendl_ex((str), (src), strlen(src), (what))
32 #define smart_string_appends(str, src) \ argument
33 smart_string_appendl((str), (src), strlen(src))
34 #define smart_string_append_ex(str, src, what) \ argument
36 ((smart_string *)(src))->len, (what));
37 #define smart_string_sets(str, src) \ argument
38 smart_string_setl((str), (src), strlen(src));
44 #define smart_string_appendl(str, src, len) \ argument
46 #define smart_string_append(str, src) \ argument
47 smart_string_append_ex((str), (src), 0)
[all …]
/PHP-7.4/azure/
H A Dcommunity_job.yml57 sed -i 's/$exit = true/$exit = false/g' vendor/phpunit/phpunit/src/TextUI/Command.php
81 sed -i 's/$exit = true/$exit = false/g' vendor/phpunit/phpunit/src/TextUI/Command.php
/PHP-7.4/build/
H A DMakefile.global59 src=`echo $$i | $(SED) -e "s#ext/$(PHP_PECL_EXTENSION)/##g"`; \
61 src=$$i; \
63 if test -f "$(top_srcdir)/$$src"; then \
64 $(INSTALL_DATA) $(top_srcdir)/$$src $(INSTALL_ROOT)$(phpincludedir)/$$i; \
65 elif test -f "$(top_builddir)/$$src"; then \
66 $(INSTALL_DATA) $(top_builddir)/$$src $(INSTALL_ROOT)$(phpincludedir)/$$i; \
68 (cd $(top_srcdir)/$$src && $(INSTALL_DATA) *.h $(INSTALL_ROOT)$(phpincludedir)/$$i; \
69 …cd $(top_builddir)/$$src && $(INSTALL_DATA) *.h $(INSTALL_ROOT)$(phpincludedir)/$$i) 2>/dev/null |…
H A Dphp.m4173 ifelse($1,,src=$ext_srcdir/Makefile.frag,src=$1)
176 …test -f "$src" && $SED -e "s#\$(srcdir)#$ac_srcdir#g" -e "s#\$(builddir)#$ac_builddir#g" $src >> …
H A Dshtool834 for src in $srcs; do
839 dstfile=`echo "$src" | sed -e 's;.*/\([^/]*\)$;\1;'`
844 if [ ".$src" = ".$dst" ]; then
848 if [ -d "$src" ]; then
849 echo "$msgprefix:Warning: source \`$src' is a directory - skipped" 1>&2
860 echo "$src -> $dst" 1>&2
870 echo "cp $src $dsttmp" 1>&2
872 cp "$src" "$dsttmp" || shtool_exit $?
875 echo "mv $src $dsttmp" 1>&2
877 mv "$src" "$dsttmp" || shtool_exit $?
[all …]
/PHP-7.4/docs/
H A Drelease-process.md13 See: https://travis-ci.org/php/php-src/builds
38 Moving extensions from php-src to PECL:
43 * Clone a new copy of the php-src repository (it will rewrite history, keep
47 git clone https://git.php.net/repository/php-src.git ext-name
71 For moving extensions from PECL to php-src the procedure needs to go through
72 the RFC process and a new Git commit without rewriting the php-src Git
83 2. Check the tests at https://travis-ci.org/php/php-src/builds.
85 3. Run the `scripts/dev/credits` script in php-src and commit the changes in
218 https://travis-ci.org/php/php-src/builds are still passing.
396 Example: https://git.php.net/?p=php-src.git;a=commit;h=a63c99b
[all …]

Completed in 129 milliseconds

12345678