Home
last modified time | relevance | path

Searched refs:copy (Results 226 – 250 of 276) sorted by relevance

12345678910>>...12

/PHP-7.4/Zend/
H A Dzend_execute.c1691 if (!copy) { in zend_incdec_typed_ref()
1692 copy = &tmp; in zend_incdec_typed_ref()
1695 ZVAL_COPY(copy, var_ptr); in zend_incdec_typed_ref()
1708 ZVAL_COPY_VALUE(var_ptr, copy); in zend_incdec_typed_ref()
1709 ZVAL_UNDEF(copy); in zend_incdec_typed_ref()
1710 } else if (copy == &tmp) { in zend_incdec_typed_ref()
1719 if (!copy) { in zend_incdec_typed_prop()
1720 copy = &tmp; in zend_incdec_typed_prop()
1723 ZVAL_COPY(copy, var_ptr); in zend_incdec_typed_prop()
1737 ZVAL_UNDEF(copy); in zend_incdec_typed_prop()
[all …]
H A Dzend_API.h603 #define ZVAL_ZVAL(z, zv, copy, dtor) do { \ argument
607 if (copy && !dtor) { \
614 if (dtor || !copy) { \
635 #define RETVAL_ZVAL(zv, copy, dtor) ZVAL_ZVAL(return_value, zv, copy, dtor) argument
654 #define RETURN_ZVAL(zv, copy, dtor) { RETVAL_ZVAL(zv, copy, dtor); return; } argument
/PHP-7.4/ext/standard/tests/strings/
H A Dget_html_translation_table_basic7.phpt139 [©] => ©
H A Dget_html_translation_table_basic2.phpt217 string(6) "©"
726 string(6) "©"
1233 string(6) "©"
H A Dhtml_entity_decode_html4.phpt19 "©",
H A Dget_html_translation_table_basic1.phpt204 string(6) "©"
H A Dhtmlentities_html4.phpt75 © U+000A9
/PHP-7.4/tests/lang/
H A Dbug20175.phpt36 * The return statement transports a copy of the value to return. In other
/PHP-7.4/ext/json/
H A Djson_scanner.re11 | If you did not receive a copy of the PHP license and are unable to |
13 | license@php.net so we can mail you a copy immediately. |
/PHP-7.4/docs/
H A Dstreams.md103 If you need to copy some data from one stream to another, you will be please to
111 If you want to copy all remaining data from the src stream, pass
113 number of bytes to copy. This function will try to use mmap where available to
132 this function to copy the contents into a new stream that can be `seek()ed`:
/PHP-7.4/ext/gd/tests/
H A DRochester-Regular.otf.LICENSE.txt96 Derivative Works a copy of this License; and
109 include a readable copy of the attribution notices contained
194 You may obtain a copy of the License at
/PHP-7.4/ext/pdo/
H A Dpdo_sql_parser.re11 | If you did not receive a copy of the PHP license and are unable to |
13 | license@php.net so we can mail you a copy immediately. |
/PHP-7.4/ext/date/lib/
H A Dparse_iso_intervals.re6 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
/PHP-7.4/ext/standard/
H A Dproc_open.c368 HANDLE copy, self = GetCurrentProcess(); in dup_handle() local
370 if (!DuplicateHandle(self, src, self, &copy, 0, inherit, DUPLICATE_SAME_ACCESS | in dup_handle()
373 return copy; in dup_handle()
H A Durl_scanner_ex.re11 | If you did not receive a copy of the PHP license and are unable to |
13 | license@php.net so we can mail you a copy immediately. |
445 * we continue to scan the tag, otherwise we simply copy the complete
/PHP-7.4/ext/spl/
H A Dphp_spl.c639 zend_function *copy = emalloc(sizeof(zend_op_array)); in PHP_FUNCTION() local
641 memcpy(copy, alfi.func_ptr, sizeof(zend_op_array)); in PHP_FUNCTION()
643 alfi.func_ptr = copy; in PHP_FUNCTION()
/PHP-7.4/
H A DREADME.REDIST.BINS263 The authors hereby grant permission to use, copy, modify, distribute,
363 of charge, to (a) use, copy, distribute, modify, perform and display this
387 Permission to use, copy, modify, and distribute this software for any
532 Permission has been granted to copy, distribute and modify gd in
637 3. Redistributions must contain a verbatim copy of this document.
667 California, USA. All Rights Reserved. Permission to copy and
/PHP-7.4/ext/fileinfo/
H A Dlibmagic.patch3348 - char *copy;
3352 - if ((copy = malloc(len + 1)) == NULL)
3354 - (void)memcpy(copy, str, len);
3355 - copy[len] = '\0';
3356 - return copy;
3530 - char *copy;
3533 - if (copy == NULL) {
3541 - copy[--slen] = '\0';
3542 - search = copy;
3593 - copy = NULL;
[all …]
/PHP-7.4/ext/opcache/
H A DZendAccelerator.c3258 int copy = 0; in preload_move_user_functions() local
3269 if (!(copy = zend_hash_exists(preload_scripts, filename))) { in preload_move_user_functions()
3272 copy = zend_hash_str_exists(preload_scripts, ZSTR_VAL(filename), eval_len); in preload_move_user_functions()
3276 copy = 0; in preload_move_user_functions()
3279 if (copy) { in preload_move_user_functions()
3297 int copy = 0; in preload_move_user_classes() local
3308 if (!(copy = zend_hash_exists(preload_scripts, filename))) { in preload_move_user_classes()
3311 copy = zend_hash_str_exists(preload_scripts, ZSTR_VAL(filename), eval_len); in preload_move_user_classes()
3315 copy = 0; in preload_move_user_classes()
3318 if (copy) { in preload_move_user_classes()
/PHP-7.4/ext/standard/tests/array/
H A Darray_pad_variation3.phpt6 * Description: Returns a copy of input array padded with pad_value to size pad_size
H A Darray_pad_variation6.phpt6 * Description: Returns a copy of input array padded with pad_value to size pad_size
/PHP-7.4/ext/phar/tests/
H A Dphar_convert_again.phpt38 copy($tbz->getPath(), $fname2);
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_store_result_copy.phpt106 globally to copy mode and run all the tests */
/PHP-7.4/sapi/fpm/tests/
H A Dfcgi.inc7 * Permission is hereby granted, free of charge, to any person obtaining a copy of
10 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
/PHP-7.4/ext/phar/tests/zip/files/
H A Dcorrupt_zipmaker.php.inc20 * You should have received a copy of the GNU Lesser General Public

Completed in 118 milliseconds

12345678910>>...12