Home
last modified time | relevance | path

Searched defs:dest (Results 1 – 25 of 51) sorted by path

123

/php-src/Zend/
H A Dzend_API.c519 ZEND_API bool ZEND_FASTCALL zend_parse_arg_bool_weak(const zval *arg, bool *dest, uint32_t arg_num)… in zend_parse_arg_bool_weak()
533 ZEND_API bool ZEND_FASTCALL zend_parse_arg_bool_slow(const zval *arg, bool *dest, uint32_t arg_num)… in zend_parse_arg_bool_slow()
542 ZEND_API bool ZEND_FASTCALL zend_flf_parse_arg_bool_slow(const zval *arg, bool *dest, uint32_t arg_… in zend_flf_parse_arg_bool_slow()
629 ZEND_API bool ZEND_FASTCALL zend_flf_parse_arg_long_slow(const zval *arg, zend_long *dest, uint32_t… in zend_flf_parse_arg_long_slow()
637 ZEND_API bool ZEND_FASTCALL zend_parse_arg_double_weak(const zval *arg, double *dest, uint32_t arg_… in zend_parse_arg_double_weak()
669 ZEND_API bool ZEND_FASTCALL zend_parse_arg_double_slow(const zval *arg, double *dest, uint32_t arg_… in zend_parse_arg_double_slow()
681 ZEND_API bool ZEND_FASTCALL zend_parse_arg_number_slow(zval *arg, zval **dest, uint32_t arg_num) /*… in zend_parse_arg_number_slow()
715 ZEND_API bool ZEND_FASTCALL zend_parse_arg_number_or_str_slow(zval *arg, zval **dest, uint32_t arg_… in zend_parse_arg_number_or_str_slow()
744 ZEND_API bool ZEND_FASTCALL zend_parse_arg_str_weak(zval *arg, zend_string **dest, uint32_t arg_num… in zend_parse_arg_str_weak()
769 ZEND_API bool ZEND_FASTCALL zend_parse_arg_str_slow(zval *arg, zend_string **dest, uint32_t arg_num… in zend_parse_arg_str_slow()
[all …]
H A Dzend_API.h1676 #define Z_PARAM_ARRAY(dest) \ argument
1705 #define Z_PARAM_ITERABLE(dest) \ argument
1720 #define Z_PARAM_BOOL(dest) \ argument
1734 #define Z_PARAM_CLASS(dest) \ argument
1797 #define Z_PARAM_DOUBLE(dest) \ argument
1890 #define Z_PARAM_LONG(dest) \ argument
1908 #define Z_PARAM_NUMBER(dest) \ argument
1934 #define Z_PARAM_OBJECT(dest) \ argument
1949 #define Z_PARAM_OBJ(dest) \ argument
2080 #define Z_PARAM_STR(dest) \ argument
[all …]
H A Dzend_compile.c5506 zend_label *dest; in zend_resolve_goto_label() local
5585 zend_label dest; in zend_compile_label() local
H A Dzend_frameless_function.h45 #define Z_FLF_PARAM_ZVAL(arg_num, dest) \ argument
47 #define Z_FLF_PARAM_ARRAY(arg_num, dest) \ argument
52 #define Z_FLF_PARAM_ARRAY_OR_NULL(arg_num, dest) \ argument
73 #define Z_FLF_PARAM_BOOL(arg_num, dest) \ argument
78 #define Z_FLF_PARAM_LONG(arg_num, dest) \ argument
83 #define Z_FLF_PARAM_LONG_OR_NULL(arg_num, is_null, dest) \ argument
88 #define Z_FLF_PARAM_STR(arg_num, dest, tmp) \ argument
H A Dzend_hash.c2282 …zend_array_dup_value(HashTable *source, HashTable *target, zval *data, zval *dest, bool packed, bo… in zend_array_dup_value()
H A Dzend_language_scanner.l124 char *src = str, *dest = str; in strip_underscores() local
H A Dzend_operators.c81 #define BLOCKCONV_STORE(dest) \ argument
106 #define BLOCKCONV_STORE(dest) \ argument
129 #define BLOCKCONV_STORE(dest) \ argument
2914 static zend_always_inline void zend_str_tolower_impl(char *dest, const char *str, size_t length) /*… in zend_str_tolower_impl()
2936 static zend_always_inline void zend_str_toupper_impl(char *dest, const char *str, size_t length) /*… in zend_str_toupper_impl()
2958 ZEND_API char* ZEND_FASTCALL zend_str_tolower_copy(char *dest, const char *source, size_t length) /… in zend_str_tolower_copy()
2966 ZEND_API char* ZEND_FASTCALL zend_str_toupper_copy(char *dest, const char *source, size_t length) /… in zend_str_toupper_copy()
H A Dzend_operators.h277 static zend_always_inline void *zend_mempcpy(void *dest, const void *src, size_t n) in zend_mempcpy()
H A Dzend_smart_str.c126 ZEND_API void smart_str_append_printf(smart_str *dest, const char *format, ...) { in smart_str_append_printf()
193 ZEND_API void ZEND_FASTCALL smart_str_append_scalar(smart_str *dest, const zval *value, size_t trun… in smart_str_append_scalar()
H A Dzend_smart_str.h63 static zend_always_inline char* smart_str_extend(smart_str *dest, size_t length) in smart_str_extend()
99 static zend_always_inline void smart_str_trim_to_size(smart_str *dest) in smart_str_trim_to_size()
117 static zend_always_inline zend_string *smart_str_extract(smart_str *dest) in smart_str_extract()
124 ZSTR_VAL(dest->s)[new_len - 1] = ch; in smart_str_appendc_ex() local
150 static zend_always_inline void smart_str_append_long(smart_str *dest, zend_long num) in smart_str_append_long()
161 static zend_always_inline void smart_str_append_unsigned(smart_str *dest, zend_ulong num) in smart_str_append_unsigned()
174 static zend_always_inline void smart_str_appends(smart_str *dest, const char *src) in smart_str_appends()
178 static zend_always_inline void smart_str_append(smart_str *dest, const zend_string *src) in smart_str_append()
182 static zend_always_inline void smart_str_appendc(smart_str *dest, char ch) in smart_str_appendc()
191 static zend_always_inline void smart_str_setl(smart_str *dest, const char *src, size_t len) { in smart_str_setl()
[all …]
H A Dzend_smart_string.h79 static zend_always_inline void smart_string_appendc_ex(smart_string *dest, char ch, bool persistent… in smart_string_appendc_ex()
84 static zend_always_inline void smart_string_appendl_ex(smart_string *dest, const char *str, size_t … in smart_string_appendl_ex()
91 static zend_always_inline void smart_string_append_long_ex(smart_string *dest, zend_long num, bool … in smart_string_append_long_ex()
97 static zend_always_inline void smart_string_append_unsigned_ex(smart_string *dest, zend_ulong num, … in smart_string_append_unsigned_ex()
103 static zend_always_inline void smart_string_setl(smart_string *dest, char *src, size_t len) { in smart_string_setl()
H A Dzend_string.c511 size_t strlcpy(char *__restrict dest, const char *__restrict src, size_t n) in strlcpy()
521 size_t strlcat (char *__restrict dest, const char *restrict src, size_t n) in strlcat()
/php-src/ext/bcmath/libbcmath/src/
H A Dconvert.c24 char *bc_copy_and_toggle_bcd(char *restrict dest, const char *source, const char *source_end) in bc_copy_and_toggle_bcd()
/php-src/ext/bz2/
H A Dbz2.c446 zend_string *dest = NULL; /* Destination to place the compressed data into */ in PHP_FUNCTION() local
484 ZSTR_VAL(dest)[ZSTR_LEN(dest)] = '\0'; in PHP_FUNCTION() local
494 zend_string *dest; in PHP_FUNCTION() local
550 ZSTR_VAL(dest)[(size_t)size] = '\0'; in PHP_FUNCTION() local
/php-src/ext/com_dotnet/
H A Dcom_misc.c92 PHP_COM_DOTNET_API bool php_com_safearray_get_elem(VARIANT *array, VARIANT *dest, LONG dim1) in php_com_safearray_get_elem()
H A Dcom_saproxy.c60 static inline void clone_indices(php_com_saproxy *dest, php_com_saproxy *src, int ndims) in clone_indices()
/php-src/ext/dom/lexbor/lexbor/core/
H A Dstr.c247 lexbor_str_copy(lexbor_str_t *dest, const lexbor_str_t *target, in lexbor_str_copy()
/php-src/ext/dom/
H A Dphp_dom.c228 dom_doc_propsptr dest; in dom_copy_document_ref() local
/php-src/ext/ftp/
H A Dftp.c1238 ftp_rename(ftpbuf_t *ftp, const char *src, const size_t src_len, const char *dest, const size_t des… in ftp_rename()
H A Dphp_ftp.c1133 char *src, *dest; in PHP_FUNCTION() local
/php-src/ext/gd/libgd/
H A Dgd_jpeg.c767 my_dest_ptr dest = (my_dest_ptr) cinfo->dest; in init_destination() local
802 my_dest_ptr dest = (my_dest_ptr) cinfo->dest; in empty_output_buffer() local
826 my_dest_ptr dest = (my_dest_ptr) cinfo->dest; in term_destination() local
844 my_dest_ptr dest; in jpeg_gdIOCtx_dest() local
H A Dgdkanji.c553 any2eucjp (unsigned char *dest, unsigned char *src, unsigned int dest_max) in any2eucjp()
/php-src/ext/hash/xxhash/
H A Dxxhash.h1506 static void* XXH_memcpy(void* dest, const void* src, size_t size) in XXH_memcpy()
3831 __m512i* const dest = ( __m512i*) customSecret; in XXH3_initCustomSecret_avx512() local
3929 __m256i* dest = ( __m256i*) customSecret; in XXH3_initCustomSecret_avx2() local
/php-src/ext/intl/converter/
H A Dconverter.c29 UConverter *src, *dest; member
533 char *dest = src; in PHP_METHOD() local
728 char *str, *src, *dest; in PHP_METHOD() local
/php-src/ext/mbstring/libmbfl/filters/
H A Dmbfilter_htmlent.c331 void mbfl_filt_conv_html_dec_copy(mbfl_convert_filter *src, mbfl_convert_filter *dest) in mbfl_filt_conv_html_dec_copy()

Completed in 208 milliseconds

123