Home
last modified time | relevance | path

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

12345

/PHP-7.4/ext/pdo/
H A Dpdo_stmt.c541 ZVAL_FALSE(dest); in fetch_value()
560 ZVAL_NULL(dest); in fetch_value()
573 ZVAL_NULL(dest); in fetch_value()
581 ZVAL_NULL(dest); in fetch_value()
586 ZVAL_NULL(dest); in fetch_value()
595 ZVAL_STR(dest, buf); in fetch_value()
618 ZVAL_NULL(dest); in fetch_value()
631 ZVAL_NULL(dest); in fetch_value()
658 switch (Z_TYPE_P(dest)) { in fetch_value()
661 convert_to_string(dest); in fetch_value()
[all …]
/PHP-7.4/ext/standard/tests/file/
H A Dcopy_variation11.phpt5 /* Prototype: bool copy ( string $source, string $dest );
6 Description: Makes a copy of the file source to dest.
H A Dcopy_variation7.phpt10 /* Prototype: bool copy ( string $source, string $dest );
11 Description: Makes a copy of the file source to dest.
H A Dcopy_variation5.phpt10 /* Prototype: bool copy ( string $source, string $dest );
11 Description: Makes a copy of the file source to dest.
H A Dcopy_variation3-win32.phpt12 /* Prototype: bool copy ( string $source, string $dest );
13 Description: Makes a copy of the file source to dest.
H A Dcopy_variation5-win32.phpt10 /* Prototype: bool copy ( string $source, string $dest );
11 Description: Makes a copy of the file source to dest.
H A Dcopy_variation3.phpt12 /* Prototype: bool copy ( string $source, string $dest );
13 Description: Makes a copy of the file source to dest.
H A Dsymlink_to_symlink.phpt15 // symlink to a regular file using a relative dest
H A Drename_variation1.phpt39 // rename the src dir to a new dir in dest dir
H A Drename_variation1-win32.phpt46 // rename the src dir to a new dir in dest dir
/PHP-7.4/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_memory_device.h68 MBFLAPI extern int mbfl_memory_device_devcat(mbfl_memory_device *dest, mbfl_memory_device *src);
H A Dmbfl_convert.c277 mbfl_convert_filter *dest) in mbfl_convert_filter_copy() argument
280 src->filter_copy(src, dest); in mbfl_convert_filter_copy()
284 *dest = *src; in mbfl_convert_filter_copy()
H A Dmbfl_convert.h43 void (*filter_copy)(mbfl_convert_filter *src, mbfl_convert_filter *dest);
H A Dmbfl_encoding.h138 void (*filter_copy)(struct _mbfl_convert_filter *src, struct _mbfl_convert_filter *dest);
H A Dmbfl_memory_device.c267 mbfl_memory_device_devcat(mbfl_memory_device *dest, mbfl_memory_device *src) in mbfl_memory_device_devcat() argument
269 return mbfl_memory_device_strncat(dest, (const char *) src->buffer, src->pos); in mbfl_memory_device_devcat()
/PHP-7.4/Zend/
H A Dzend_smart_str.c117 ZEND_API void smart_str_append_printf(smart_str *dest, const char *format, ...) { in smart_str_append_printf() argument
120 zend_printf_to_smart_str(dest, format, arg); in smart_str_append_printf()
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_API.c396 *dest = zend_is_true(arg); in zend_parse_arg_bool_weak()
446 *dest = 0; in zend_parse_arg_long_weak()
448 *dest = 1; in zend_parse_arg_long_weak()
490 *dest = 0; in zend_parse_arg_long_cap_weak()
492 *dest = 1; in zend_parse_arg_long_cap_weak()
519 *dest = (double)(l); in zend_parse_arg_double_weak()
528 *dest = 0.0; in zend_parse_arg_double_weak()
530 *dest = 1.0; in zend_parse_arg_double_weak()
554 *dest = Z_STR_P(arg); in zend_parse_arg_str_weak()
561 *dest = Z_STR_P(arg); in zend_parse_arg_str_weak()
[all …]
/PHP-7.4/main/
H A Dphp_streams.h455 PHPAPI size_t _php_stream_copy_to_stream(php_stream *src, php_stream *dest, size_t maxlen STREAMS_D…
456 #define php_stream_copy_to_stream(src, dest, maxlen) _php_stream_copy_to_stream((src), (dest), (max… argument
457 PHPAPI int _php_stream_copy_to_stream_ex(php_stream *src, php_stream *dest, size_t maxlen, size_t *…
458 #define php_stream_copy_to_stream_ex(src, dest, maxlen, len) _php_stream_copy_to_stream_ex((src), ( argument
H A Dphp_variables.c728 static void php_autoglobal_merge(HashTable *dest, HashTable *src) in php_autoglobal_merge() argument
733 int globals_check = (dest == (&EG(symbol_table))); in php_autoglobal_merge()
737 || (string_key && (dest_entry = zend_hash_find(dest, string_key)) == NULL) in php_autoglobal_merge()
738 || (string_key == NULL && (dest_entry = zend_hash_index_find(dest, num_key)) == NULL) in php_autoglobal_merge()
744 zend_hash_update(dest, string_key, src_entry); in php_autoglobal_merge()
749 zend_hash_index_update(dest, num_key, src_entry); in php_autoglobal_merge()
/PHP-7.4/ext/phar/
H A Dutil.c648 if (dest->link) { in phar_copy_entry_fp()
649 efree(dest->link); in phar_copy_entry_fp()
650 dest->link = NULL; in phar_copy_entry_fp()
651 dest->tar_type = (dest->is_tar ? TAR_FILE : '\0'); in phar_copy_entry_fp()
654 dest->fp_type = PHAR_MOD; in phar_copy_entry_fp()
655 dest->offset = 0; in phar_copy_entry_fp()
656 dest->is_modified = 1; in phar_copy_entry_fp()
657 dest->fp = php_stream_fopen_tmpfile(); in phar_copy_entry_fp()
658 if (dest->fp == NULL) { in phar_copy_entry_fp()
670 php_stream_close(dest->fp); in phar_copy_entry_fp()
[all …]
/PHP-7.4/ext/dom/
H A Dphp_dom.c184 dom_doc_propsptr source, dest; in dom_copy_doc_props() local
189 dest = dom_get_doc_props(dest_doc); in dom_copy_doc_props()
191 dest->formatoutput = source->formatoutput; in dom_copy_doc_props()
192 dest->validateonparse = source->validateonparse; in dom_copy_doc_props()
193 dest->resolveexternals = source->resolveexternals; in dom_copy_doc_props()
194 dest->preservewhitespace = source->preservewhitespace; in dom_copy_doc_props()
195 dest->substituteentities = source->substituteentities; in dom_copy_doc_props()
196 dest->stricterror = source->stricterror; in dom_copy_doc_props()
197 dest->recover = source->recover; in dom_copy_doc_props()
199 ALLOC_HASHTABLE(dest->classmap); in dom_copy_doc_props()
[all …]
/PHP-7.4/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-7.4/win32/build/
H A Dconfutils.js2118 var dest;
2126 dest = PHP_DIR + "/script/";
2128 if (!FSO.FolderExists(dest)) {
2129 FSO.CreateFolder(dest);
2132 if (FSO.FileExists(dest + "/ext_pickle.js")) {
2180 dest = PHP_DIR + "/include/main";
2197 if (FSO.FileExists(dest + "/config.pickle.h")) {
2327 dest = get_define("BUILD_DIR") + '/devel';
2329 if (!FSO.FolderExists(dest)) {
2330 FSO.CreateFolder(dest);
[all …]
/PHP-7.4/ext/hash/
H A Dhash_sha3.c248 PHP_SHA3_CTX* dest = (PHP_SHA3_CTX*)dest_context; in hash_sha3_copy() local
249 memcpy(dest->hashinstance, orig->hashinstance, sizeof(Keccak_HashInstance)); in hash_sha3_copy()

Completed in 95 milliseconds

12345