Home
last modified time | relevance | path

Searched refs:copy (Results 251 – 275 of 316) sorted by relevance

1...<<111213

/php-src/ext/spl/
H A Dphp_spl.c546 zend_function *copy = emalloc(sizeof(zend_op_array)); in PHP_FUNCTION() local
548 memcpy(copy, alfi->func_ptr, sizeof(zend_op_array)); in PHP_FUNCTION()
550 alfi->func_ptr = copy; in PHP_FUNCTION()
/php-src/Zend/Optimizer/
H A Dzend_optimizer_internal.h83 bool zend_optimizer_get_persistent_constant(zend_string *name, zval *result, int copy);
/php-src/win32/build/
H A Dphpize.js.in9 | If you did not receive a copy of the PHP license and are unable to |
11 | license@php.net so we can mail you a copy immediately. |
/php-src/ext/ffi/
H A Dffi.g9 | If you did not receive a copy of the PHP license and are unable to |
11 | license@php.net so we can mail you a copy immediately. |
39 | If you did not receive a copy of the PHP license and are unable to |
41 | license@php.net so we can mail you a copy immediately. |
/php-src/ext/standard/html_tables/
H A Dents_html401.txt11 copy 00A9
H A Dents_xhtml.txt10 copy 00A9
/php-src/ext/standard/tests/strings/
H A Dsprintf_f_2.phpt14 /* copy & paste from the docs */
H A Dget_html_translation_table_basic7.phpt139 [©] => &copy;
H A Dget_html_translation_table_basic2.phpt212 string(6) "&copy;"
721 string(6) "&copy;"
1228 string(6) "&copy;"
H A Dhtml_entity_decode_html4.phpt19 "&copy;",
H A Dget_html_translation_table_basic1.phpt199 string(6) "&copy;"
/php-src/tests/lang/
H A Dbug20175.phpt36 * The return statement transports a copy of the value to return. In other
/php-src/ext/json/
H A Djson_scanner.re9 | If you did not receive a copy of the PHP license and are unable to |
11 | license@php.net so we can mail you a copy immediately. |
/php-src/docs-old/
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-src/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-src/Zend/asm/
H A Djump_x86_64_ms_pe_masm.asm4 ; (See accompanying file LICENSE_1_0.txt or copy at
H A Dmake_i386_ms_pe_masm.asm4 ; (See accompanying file LICENSE_1_0.txt or copy at
/php-src/ext/pdo/
H A Dpdo_sql_parser.re9 | If you did not receive a copy of the PHP license and are unable to |
11 | license@php.net so we can mail you a copy immediately. |
/php-src/ext/zend_test/
H A Dtest.c1295 char * copy = zend_strndup(str, str_len); in ZEND_GET_MODULE() local
1296 int r = (int) ZEND_ATOL(copy); in ZEND_GET_MODULE()
1297 free(copy); in ZEND_GET_MODULE()
/php-src/ext/ffi/tests/
H A Dgh11934.phpt14 // Choose integer numbers off the maximum to test copy
/php-src/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-src/Zend/
H A Dzend_closures.c625 zval copy; in zend_closure_get_debug_info() local
630 ZVAL_COPY(&copy, var); in zend_closure_get_debug_info()
632 zend_hash_add_new(Z_ARRVAL(val), key, &copy); in zend_closure_get_debug_info()
H A Dzend_execute.c1939 if (!copy) { in zend_incdec_typed_ref()
1940 copy = &tmp; in zend_incdec_typed_ref()
1943 ZVAL_COPY(copy, var_ptr); in zend_incdec_typed_ref()
1959 ZVAL_COPY_VALUE(var_ptr, copy); in zend_incdec_typed_ref()
1960 ZVAL_UNDEF(copy); in zend_incdec_typed_ref()
1961 } else if (copy == &tmp) { in zend_incdec_typed_ref()
1970 if (!copy) { in zend_incdec_typed_prop()
1971 copy = &tmp; in zend_incdec_typed_prop()
1974 ZVAL_COPY(copy, var_ptr); in zend_incdec_typed_prop()
1990 ZVAL_UNDEF(copy); in zend_incdec_typed_prop()
[all …]
H A Dzend_API.h770 zend_function *copy = (zend_function*)emalloc(sizeof(zend_function)); in zend_fcc_addref() local
772 memcpy(copy, fcc->function_handler, sizeof(zend_function)); in zend_fcc_addref()
774 fcc->function_handler = copy; in zend_fcc_addref()
990 #define ZVAL_ZVAL(z, zv, copy, dtor) do { \ argument
994 if (copy && !dtor) { \
1001 if (dtor || !copy) { \
1029 #define RETVAL_ZVAL(zv, copy, dtor) ZVAL_ZVAL(return_value, zv, copy, dtor) argument
1055 #define RETURN_ZVAL(zv, copy, dtor) do { RETVAL_ZVAL(zv, copy, dtor); return; } while (0) argument
H A Dzend_operators.c2659 zval copy; in increment_function() local
2660 ZVAL_COPY_VALUE(&copy, op1); in increment_function()
2663 ZVAL_COPY_VALUE(op1, &copy); in increment_function()
2753 zval copy; in decrement_function() local
2754 ZVAL_COPY_VALUE(&copy, op1); in decrement_function()
2757 ZVAL_COPY_VALUE(op1, &copy); in decrement_function()
2766 zval copy; in decrement_function() local
2767 ZVAL_COPY_VALUE(&copy, op1); in decrement_function()
2770 ZVAL_COPY_VALUE(op1, &copy); in decrement_function()

Completed in 97 milliseconds

1...<<111213