Home
last modified time | relevance | path

Searched refs:dest (Results 51 – 75 of 97) sorted by relevance

1234

/php-src/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_convert.c165 void mbfl_convert_filter_copy(mbfl_convert_filter *src, mbfl_convert_filter *dest) in mbfl_convert_filter_copy() argument
168 src->filter_copy(src, dest); in mbfl_convert_filter_copy()
172 *dest = *src; in mbfl_convert_filter_copy()
H A Dmbfl_convert.h49 void (*filter_copy)(mbfl_convert_filter *src, mbfl_convert_filter *dest);
/php-src/main/
H A Dphp_streams.h484 PHPAPI size_t _php_stream_copy_to_stream(php_stream *src, php_stream *dest, size_t maxlen STREAMS_D…
485 #define php_stream_copy_to_stream(src, dest, maxlen) _php_stream_copy_to_stream((src), (dest), (max… argument
486 PHPAPI zend_result _php_stream_copy_to_stream_ex(php_stream *src, php_stream *dest, size_t maxlen, …
487 #define php_stream_copy_to_stream_ex(src, dest, maxlen, len) _php_stream_copy_to_stream_ex((src), ( argument
H A Dphp_variables.c754 static void php_autoglobal_merge(HashTable *dest, HashTable *src) in php_autoglobal_merge() argument
759 int globals_check = (dest == (&EG(symbol_table))); in php_autoglobal_merge()
763 || (string_key && (dest_entry = zend_hash_find(dest, string_key)) == NULL) in php_autoglobal_merge()
764 || (string_key == NULL && (dest_entry = zend_hash_index_find(dest, num_key)) == NULL) in php_autoglobal_merge()
769 zend_hash_update(dest, string_key, src_entry); in php_autoglobal_merge()
774 zend_hash_index_update(dest, num_key, src_entry); in php_autoglobal_merge()
/php-src/ext/phar/
H A Dutil.c658 if (dest->link) { in phar_copy_entry_fp()
659 efree(dest->link); in phar_copy_entry_fp()
660 dest->link = NULL; in phar_copy_entry_fp()
661 dest->tar_type = (dest->is_tar ? TAR_FILE : '\0'); in phar_copy_entry_fp()
664 dest->fp_type = PHAR_MOD; in phar_copy_entry_fp()
665 dest->offset = 0; in phar_copy_entry_fp()
666 dest->is_modified = 1; in phar_copy_entry_fp()
667 dest->fp = php_stream_fopen_tmpfile(); in phar_copy_entry_fp()
668 if (dest->fp == NULL) { in phar_copy_entry_fp()
680 php_stream_close(dest->fp); in phar_copy_entry_fp()
[all …]
/php-src/ext/standard/tests/file/
H A Dcopy_variation13.phpt2 Test copy() function: usage variations - src as dir and dest as an existing file(Bug #42243)
H A Dcopy_variation15.phpt28 $dest = $dir."/copy_copy_variation15.tmp";
H A Dsymlink_to_symlink.phpt15 // symlink to a regular file using a relative dest
H A Drename_variation1-win32.phpt42 // rename the src dir to a new dir in dest dir
H A Drename_variation1.phpt39 // rename the src dir to a new dir in dest dir
H A Dcopy_variation14.phpt2 Test copy() function: usage variations - non existing src/dest
/php-src/Zend/
H A Dzend_API.c570 *dest = lval; in zend_parse_arg_long_weak()
598 *dest = lval; in zend_parse_arg_long_weak()
610 *dest = 0; in zend_parse_arg_long_weak()
612 *dest = 1; in zend_parse_arg_long_weak()
647 *dest = (double)(l); in zend_parse_arg_double_weak()
659 *dest = 0.0; in zend_parse_arg_double_weak()
661 *dest = 1.0; in zend_parse_arg_double_weak()
709 *dest = arg; in zend_parse_arg_number_slow()
733 *dest = arg; in zend_parse_arg_number_or_str_slow()
740 *dest = arg; in zend_parse_arg_number_or_str_slow()
[all …]
H A Dzend_operators.c81 #define BLOCKCONV_STORE(dest) \ argument
106 #define BLOCKCONV_STORE(dest) \ argument
129 #define BLOCKCONV_STORE(dest) \ argument
132 vst1q_s8((int8_t *)(dest), blconv_result);
2916 unsigned char *q = (unsigned char*)dest; in zend_str_tolower_impl()
2938 unsigned char *q = (unsigned char*)dest; in zend_str_toupper_impl()
2960 zend_str_tolower_impl(dest, source, length); in zend_str_tolower_copy()
2961 dest[length] = '\0'; in zend_str_tolower_copy()
2962 return dest; in zend_str_tolower_copy()
2969 dest[length] = '\0'; in zend_str_toupper_copy()
[all …]
H A Dzend_operators.h277 static zend_always_inline void *zend_mempcpy(void *dest, const void *src, size_t n) in zend_mempcpy() argument
280 return mempcpy(dest, src, n); in zend_mempcpy()
282 return (char *)memcpy(dest, src, n) + n; in zend_mempcpy()
456 ZEND_API char* ZEND_FASTCALL zend_str_tolower_copy(char *dest, const char *source, size_t le…
457 ZEND_API char* ZEND_FASTCALL zend_str_toupper_copy(char *dest, const char *source, size_t le…
/php-src/ext/gd/libgd/
H A Dgdkanji.c553 any2eucjp (unsigned char *dest, unsigned char *src, unsigned int dest_max) in any2eucjp() argument
572 ustrcpy (dest, src); in any2eucjp()
575 ustrcpy (dest, tmp_dest); in any2eucjp()
/php-src/win32/build/
H A Dconfutils.js2126 var dest;
2134 dest = PHP_DIR + "/script/";
2136 if (!FSO.FolderExists(dest)) {
2137 FSO.CreateFolder(dest);
2140 if (FSO.FileExists(dest + "/ext_pickle.js")) {
2188 dest = PHP_DIR + "/include/main";
2205 if (FSO.FileExists(dest + "/config.pickle.h")) {
2328 dest = get_define("BUILD_DIR") + '/devel';
2330 if (!FSO.FolderExists(dest)) {
2331 FSO.CreateFolder(dest);
[all …]
/php-src/ext/standard/
H A Darray.c4101 zend_hash_extend(dest, zend_hash_num_elements(dest) + zend_hash_num_elements(src), 1);
4102 ZEND_HASH_FILL_PACKED(dest) {
4205 HashTable *dest; local
4225 dest = Z_ARRVAL_P(arg);
4230 ZVAL_ARR(return_value, dest);
4245 GC_ADDREF(dest);
4256 HashTable *src, *dest; local
4316 dest = src;
4318 ZVAL_ARR(return_value, dest);
4324 ZEND_HASH_FILL_PACKED(dest) {
[all …]
H A Dfile.c1519 PHPAPI int php_copy_file(const char *src, const char *dest) in php_copy_file() argument
1521 return php_copy_file_ctx(src, dest, 0, NULL); in php_copy_file()
1526 PHPAPI int php_copy_file_ex(const char *src, const char *dest, int src_flg) in php_copy_file_ex() argument
1528 return php_copy_file_ctx(src, dest, src_flg, NULL); in php_copy_file_ex()
1533 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
1555 switch (php_stream_stat_path_ex(dest, PHP_STREAM_URL_STAT_QUIET, &dest_s, ctx)) { in php_copy_file_ctx()
1585 if ((dp = expand_filepath(dest, NULL)) == NULL) { in php_copy_file_ctx()
1611 deststream = php_stream_open_wrapper_ex(dest, "wb", REPORT_ERRORS, NULL, ctx); in php_copy_file_ctx()
/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/ext/com_dotnet/
H A Dphp_com_dotnet_internal.h132 PHP_COM_DOTNET_API bool php_com_safearray_get_elem(VARIANT *array, VARIANT *dest, LONG dim1);
/php-src/main/streams/
H A Dstreams.c1604 PHPAPI zend_result _php_stream_copy_to_stream_ex(php_stream *src, php_stream *dest, size_t maxlen, … in _php_stream_copy_to_stream_ex() argument
1622 php_stream_is(dest, PHP_STREAM_IS_STDIO) && in _php_stream_copy_to_stream_ex()
1630 php_stream_cast(dest, PHP_STREAM_AS_FD, (void*)&dest_fd, 0) == SUCCESS && in _php_stream_copy_to_stream_ex()
1632 php_stream_parse_fopen_modes(dest->mode, &dest_open_flags) == SUCCESS && in _php_stream_copy_to_stream_ex()
1649 dest->position += nbytes; in _php_stream_copy_to_stream_ex()
1729 didwrite = php_stream_write(dest, p, mapped); in _php_stream_copy_to_stream_ex()
1780 ssize_t didwrite = php_stream_write(dest, writeptr, towrite); in _php_stream_copy_to_stream_ex()
1803 PHPAPI size_t _php_stream_copy_to_stream(php_stream *src, php_stream *dest, size_t maxlen STREAMS_D… in _php_stream_copy_to_stream() argument
1806 zend_result ret = _php_stream_copy_to_stream_ex(src, dest, maxlen, &len STREAMS_REL_CC); in _php_stream_copy_to_stream()
/php-src/ext/dom/
H A Dphp_dom.c228 dom_doc_propsptr dest; in dom_copy_document_ref() local
233 dest = dom_get_doc_props(dest_doc); in dom_copy_document_ref()
235 dest->formatoutput = source->formatoutput; in dom_copy_document_ref()
236 dest->validateonparse = source->validateonparse; in dom_copy_document_ref()
237 dest->resolveexternals = source->resolveexternals; in dom_copy_document_ref()
238 dest->preservewhitespace = source->preservewhitespace; in dom_copy_document_ref()
239 dest->substituteentities = source->substituteentities; in dom_copy_document_ref()
240 dest->stricterror = source->stricterror; in dom_copy_document_ref()
241 dest->recover = source->recover; in dom_copy_document_ref()
243 ALLOC_HASHTABLE(dest->classmap); in dom_copy_document_ref()
[all …]
/php-src/ext/random/
H A Dphp_random.h178 PHPAPI bool php_random_hex2bin_le(zend_string *hexstr, void *dest);
/php-src/ext/hash/xxhash/
H A Dxxhash.h1506 static void* XXH_memcpy(void* dest, const void* src, size_t size) in XXH_memcpy() argument
1508 return memcpy(dest,src,size); in XXH_memcpy()
3831 __m512i* const dest = ( __m512i*) customSecret; in XXH3_initCustomSecret_avx512() local
3834 XXH_ASSERT(((size_t)dest & 63) == 0); in XXH3_initCustomSecret_avx512()
3929 __m256i* dest = ( __m256i*) customSecret; in XXH3_initCustomSecret_avx2() local
3937 XXH_COMPILER_GUARD(dest); in XXH3_initCustomSecret_avx2()
3940 XXH_ASSERT(((size_t)dest & 31) == 0); in XXH3_initCustomSecret_avx2()
3943 dest[0] = _mm256_add_epi64(_mm256_stream_load_si256(src+0), seed); in XXH3_initCustomSecret_avx2()
3944 dest[1] = _mm256_add_epi64(_mm256_stream_load_si256(src+1), seed); in XXH3_initCustomSecret_avx2()
3945 dest[2] = _mm256_add_epi64(_mm256_stream_load_si256(src+2), seed); in XXH3_initCustomSecret_avx2()
[all …]
/php-src/build/
H A Dltmain.sh5853 dest=
5862 if test -n "$dest"; then
5863 files="$files $dest"
5864 dest=$arg
5888 dest=$arg
5917 if test -z "$dest"; then
5927 dest=`$echo "X$dest" | $Xsed -e 's%/$%%'`
5930 test -d "$dest" && isdir=yes
5932 destdir="$dest"
5936 test "X$destdir" = "X$dest" && destdir=.
[all …]

Completed in 159 milliseconds

1234