Home
last modified time | relevance | path

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

123456789

/PHP-7.0/
H A DINSTALL1284 under the php-src/ext/ directory and tell the PHP build system to
1609 [mybox:user /src/php7] root# apachectl configtest apachectl:
1753 [mybox:user /src/php7] root# apachectl configtest
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 DREADME.RELEASE_PROCESS15 See: https://travis-ci.org/php/php-src/builds
37 Moving extensions from php-src to PECL
43 - Move the extension from php-src to the new location
44 svn mv https://svn.php.net/repository/php/php-src/trunk/ext/foo \
53 For Moving extensions from PECL to php-src the svn mv has to be tone the other
61 2. Check the tests at https://travis-ci.org/php/php-src/builds
63 3. run the "scripts/dev/credits" script in php-src and commit the changes in the
162 3. Commit those changes. Ensure the tests at https://travis-ci.org/php/php-src/builds are
165 4. run the "scripts/dev/credits" script in php-src and commit the changes in the
H A DREADME.STREAMS106 PHPAPI size_t php_stream_copy_to_stream(php_stream *src,
109 If you want to copy all remaining data from the src stream, pass
118 PHPAPI size_t php_stream_copy_to_mem(php_stream *src, char **buf,
H A DREADME.SUBMITTING_PATCH46 GitHub: https://github.com/php/php-src
H A DREADME.md7 …ld Status](https://secure.travis-ci.org/php/php-src.svg?branch=master)](http://travis-ci.org/php/p…
8 …or.com/api/projects/status/meyur6fviaxgdwdy?svg=true)](https://ci.appveyor.com/project/php/php-src)
H A Dacinclude.m4177 ifelse($1,,src=$ext_srcdir/Makefile.frag,src=$1)
180 …test -f "$src" && $SED -e "s#\$(srcdir)#$ac_srcdir#g" -e "s#\$(builddir)#$ac_builddir#g" $src >> …
/PHP-7.0/Zend/RFCs/
H A D002.txt103 4 var $src;
104 5 function Image($src) {
105 6 $this->src = $src;
/PHP-7.0/Zend/tests/
H A Dconcat_002.phpt9 * @see https://github.com/php/php-src/commit/29397f8fd2b4bc8d95e18448ca2d27a62241a407
/PHP-7.0/Zend/
H A Dzend.c1191 # define va_copy(dest, src) __va_copy((dest), (src)) in zend_error() argument
1193 # define va_copy(dest, src) memcpy(&(dest), &(src), sizeof(va_list)) in zend_error()
H A Dzend_API.c1173 zval *src = class_type->default_properties_table; in object_properties_init() local
1175 zval *end = src + class_type->default_properties_count; in object_properties_init()
1179 ZVAL_DUP(dst, src); in object_properties_init()
1181 ZVAL_COPY(dst, src); in object_properties_init()
1183 src++; in object_properties_init()
1185 } while (src != end); in object_properties_init()
H A Dzend_builtin_functions.c791 static void copy_constant_array(zval *dst, zval *src) /* {{{ */ in copy_constant_array() argument
797 array_init_size(dst, zend_hash_num_elements(Z_ARRVAL_P(src))); in copy_constant_array()
798 ZEND_HASH_FOREACH_KEY_VAL_IND(Z_ARRVAL_P(src), idx, key, val) { in copy_constant_array()
H A Dzend_compile.c37 #define SET_NODE(target, src) do { \ argument
38 target ## _type = (src)->op_type; \
39 if ((src)->op_type == IS_CONST) { \
40 target.constant = zend_add_literal(CG(active_op_array), &(src)->u.constant); \
42 target = (src)->u.op; \
46 #define GET_NODE(target, src) do { \ argument
47 (target)->op_type = src ## _type; \
49 ZVAL_COPY_VALUE(&(target)->u.constant, CT_CONSTANT(src)); \
51 (target)->u.op = src; \
H A Dzend_execute.c2132 zval *end, *src, *dst; in i_init_func_execute_data() local
2148 ZVAL_UNDEF(src); in i_init_func_execute_data()
2149 src--; in i_init_func_execute_data()
2151 } while (src != end); in i_init_func_execute_data()
2155 src--; in i_init_func_execute_data()
2156 } while (src != end); in i_init_func_execute_data()
2247 zval *end, *src, *dst; in i_init_execute_data() local
2263 ZVAL_UNDEF(src); in i_init_execute_data()
2264 src--; in i_init_execute_data()
2270 src--; in i_init_execute_data()
[all …]
H A Dzend_generators.c379 static void zend_generator_merge_child_nodes(zend_generator_node *dest, zend_generator_node *src, z… in zend_generator_merge_child_nodes() argument
381 if (src->children <= 4) { in zend_generator_merge_child_nodes()
382 int i = src->children; in zend_generator_merge_child_nodes()
384 zend_generator_add_single_child(dest, child, src->child.array[i].leaf); in zend_generator_merge_child_nodes()
388 ZEND_HASH_FOREACH_NUM_KEY(&src->child.ht, leaf) { in zend_generator_merge_child_nodes()
H A Dzend_inheritance.c791 zval *src, *dst, *end; in zend_do_inheritance() local
801 src--; in zend_do_inheritance()
814 src--; in zend_do_inheritance()
817 ZVAL_DUP(dst, src); in zend_do_inheritance()
825 ZVAL_COPY(dst, src); in zend_do_inheritance()
834 zval *src, *dst, *end; in zend_do_inheritance() local
844 src--; in zend_do_inheritance()
857 src--; in zend_do_inheritance()
859 if (!Z_ISREF_P(src)) { in zend_do_inheritance()
860 ZVAL_NEW_PERSISTENT_REF(src, src); in zend_do_inheritance()
[all …]
H A Dzend_llist.c151 ZEND_API void zend_llist_copy(zend_llist *dst, zend_llist *src) in zend_llist_copy() argument
155 zend_llist_init(dst, src->size, src->dtor, src->persistent); in zend_llist_copy()
156 ptr = src->head; in zend_llist_copy()
H A Dzend_llist.h57 ZEND_API void zend_llist_copy(zend_llist *dst, zend_llist *src);
H A Dzend_objects.c172 zval *src = old_object->properties_table; in zend_objects_clone_members() local
174 zval *end = src + old_object->ce->default_properties_count; in zend_objects_clone_members()
178 ZVAL_COPY_VALUE(dst, src); in zend_objects_clone_members()
180 src++; in zend_objects_clone_members()
182 } while (src != end); in zend_objects_clone_members()
H A Dzend_smart_str.h26 smart_str_appendl_ex((dest), (src), strlen(src), (what))
27 #define smart_str_appends(dest, src) \ argument
28 smart_str_appendl((dest), (src), strlen(src))
31 #define smart_str_appendl(dest, src, len) \ argument
33 #define smart_str_append(dest, src) \ argument
34 smart_str_append_ex((dest), (src), 0)
37 #define smart_str_sets(dest, src) \ argument
38 smart_str_setl((dest), (src), strlen(src));
95 smart_str_appendl_ex(dest, ZSTR_VAL(src), ZSTR_LEN(src), persistent); in smart_str_append_ex()
99 if (src->s && ZSTR_LEN(src->s)) { in smart_str_append_smart_str_ex()
[all …]
/PHP-7.0/build/
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.0/ext/bcmath/
H A Dconfig.m410src/add.c libbcmath/src/div.c libbcmath/src/init.c libbcmath/src/neg.c libbcmath/src/outofmem.c li…
11 libbcmath/src/compare.c libbcmath/src/divmod.c libbcmath/src/int2num.c libbcmath/src/num2long.c lib…
12 …cmath/src/sqrt.c libbcmath/src/zero.c libbcmath/src/debug.c libbcmath/src/doaddsub.c libbcmath/src
13 libbcmath/src/rmzero.c libbcmath/src/str2num.c,
14 $ext_shared,,-I@ext_srcdir@/libbcmath/src -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1)
15 PHP_ADD_BUILD_DIR($ext_builddir/libbcmath/src)
H A Dconfig.w327 …EXTENSION("bcmath", "bcmath.c", null, "-Iext/bcmath/libbcmath/src /DZEND_ENABLE_STATIC_TSRMLS_CACH…
8 ADD_SOURCES("ext/bcmath/libbcmath/src", "add.c div.c init.c neg.c \
/PHP-7.0/ext/bcmath/libbcmath/
H A DMakefile.am3 SUBDIRS= src doc
10 cp $(srcdir)/src/private.h $(distdir)/src
H A Dconfigure.in17 AC_OUTPUT(Makefile src/Makefile doc/Makefile)

Completed in 145 milliseconds

123456789