Home
last modified time | relevance | path

Searched refs:src (Results 126 – 150 of 235) sorted by relevance

12345678910

/PHP-8.2/ext/gd/libgd/
H A Dgd_io_dp.c49 static int appendDynamic (dynamicPtr * dp, const void *src, int size);
296 static int appendDynamic (dynamicPtr * dp, const void *src, int size) in appendDynamic() argument
320 memcpy((void *) (tmp + (dp->pos)), src, size); in appendDynamic()
H A Dgdkanji.c553 any2eucjp (unsigned char *dest, unsigned char *src, unsigned int dest_max) in any2eucjp() argument
558 if (strlen ((const char *) src) >= BUFSIZ) in any2eucjp()
568 ret = do_check_and_conv (tmp_dest, src); in any2eucjp()
572 ustrcpy (dest, src); in any2eucjp()
H A Dgd_crop.c44 gdImagePtr gdImageCrop(gdImagePtr src, const gdRectPtr crop) in gdImageCrop() argument
49 if (gdImageTrueColor(src)) { in gdImageCrop()
57 gdImageCopy(dst, src, 0, 0, crop->x, crop->y, crop->width, crop->height); in gdImageCrop()
/PHP-8.2/ext/opcache/jit/
H A Dzend_jit_vm_helpers.c130 zval *end, *src, *dst; in zend_jit_copy_extra_args_helper() local
144 src = end + (num_args - first_extra_arg); in zend_jit_copy_extra_args_helper()
146 if (EXPECTED(src != dst)) { in zend_jit_copy_extra_args_helper()
148 type_flags |= Z_TYPE_INFO_P(src); in zend_jit_copy_extra_args_helper()
149 ZVAL_COPY_VALUE(dst, src); in zend_jit_copy_extra_args_helper()
150 ZVAL_UNDEF(src); in zend_jit_copy_extra_args_helper()
151 src--; in zend_jit_copy_extra_args_helper()
153 } while (src != end); in zend_jit_copy_extra_args_helper()
159 if (Z_REFCOUNTED_P(src)) { in zend_jit_copy_extra_args_helper()
163 src--; in zend_jit_copy_extra_args_helper()
[all …]
H A DREADME.md8 Framework is embedded into php-src.
99 docker build --network=host -t php-src-arm64-example -f ext/opcache/jit/Dockerfile.arm64.example .
100 docker run -it --rm php-src-arm64-example
107 docker run -it php-src-arms-example make test TESTS="-d opcache.jit_buffer_size=16M -d opcache.enab…
/PHP-8.2/main/
H A Dphp_ini_builder.h74 PHPAPI void php_ini_builder_prepend(struct php_ini_builder *b, const char *src, size_t length);
/PHP-8.2/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_memory_device.h66 MBFLAPI extern int mbfl_memory_device_devcat(mbfl_memory_device *dest, mbfl_memory_device *src);
/PHP-8.2/ext/dom/tests/
H A Dbug47847.phpt6 See https://github.com/php/php-src/pull/12308
H A Dbug55294.phpt6 See https://github.com/php/php-src/pull/12308
/PHP-8.2/
H A DSECURITY.md4 <https://github.com/php/php-src/security/advisories/new>
/PHP-8.2/ext/pdo_dblib/tests/
H A DREADME.md9 # and then from the root of php-src
/PHP-8.2/ext/dom/lexbor/lexbor/css/selectors/
H A Dselector.h248 lxb_css_selector_list_t *src);
251 lxb_css_selector_append_next(lxb_css_selector_t *dist, lxb_css_selector_t *src);
/PHP-8.2/ext/pcre/pcre2lib/sljit/
H A DsljitConfigInternal.h253 #define SLJIT_MEMCPY(dest, src, len) memcpy(dest, src, len) argument
257 #define SLJIT_MEMMOVE(dest, src, len) memmove(dest, src, len) argument
H A DsljitNativePPC_64.c30 #define ASM_SLJIT_CLZ(src, dst) \ argument
31 __asm__ volatile ( "cntlzd %0, %1" : "=r"(dst) : "r"(src) )
119 #define CLRLDI(dst, src, n) \ argument
120 (RLDICL | S(src) | A(dst) | RLDI_SH(0) | RLDI_MB(n))
502 …atic sljit_s32 call_with_args(struct sljit_compiler *compiler, sljit_s32 arg_types, sljit_s32 *src) in call_with_args() argument
509 if (src) in call_with_args()
510 reg = *src & REG_MASK; in call_with_args()
528 *src = TMP_CALL_REG; in call_with_args()
H A DsljitNativeSPARC_32.c141 …atic sljit_s32 call_with_args(struct sljit_compiler *compiler, sljit_s32 arg_types, sljit_s32 *src) in call_with_args() argument
152 if (src) in call_with_args()
153 reg = reg_map[*src & REG_MASK]; in call_with_args()
188 *src = TMP_REG1; in call_with_args()
/PHP-8.2/win32/build/
H A Dmkdist.php260 foreach ($text_files as $src => $dest) {
261 copy_text_file($src, $dist_dir . '/' . $dest);
269 foreach ($general_files as $src => $dest) {
270 copy($src, $dist_dir . '/' . $dest);
/PHP-8.2/ext/pgsql/tests/
H A DREADME.md18 [bug](https://github.com/php/php-src/issues).
/PHP-8.2/Zend/
H A Dzend_inheritance.c1524 zval *src, *dst, *end; in zend_do_inheritance_ex() local
1534 src--; in zend_do_inheritance_ex()
1549 src--; in zend_do_inheritance_ex()
1563 src--; in zend_do_inheritance_ex()
1564 ZVAL_COPY_PROP(dst, src); in zend_do_inheritance_ex()
1576 zval *src, *dst, *end; in zend_do_inheritance_ex() local
1586 src--; in zend_do_inheritance_ex()
1599 src--; in zend_do_inheritance_ex()
1603 ZVAL_INDIRECT(dst, src); in zend_do_inheritance_ex()
2892 for (; src != end; src++, dst++) { in zend_lazy_class_load()
[all …]
/PHP-8.2/ext/mbstring/libmbfl/
H A DREADME.md12 such, the libmbfl directory is directly modified in the php-src repository.
18 * Since 2017, it is forked and bundled in the php-src repository. For the list
/PHP-8.2/scripts/dev/
H A Dmakedist27 Creates PHP release packages (tar.gz, tar.bz2, tar.xz) from the php-src Git
69 scripts/dev/makedist --remote=git@github.com:php/php-src.git php-7.4.0
/PHP-8.2/ext/tokenizer/
H A Dtokenizer.c298 zval *src = &token_class->default_properties_table[4]; in add_token() local
301 for (; src < end; src++, dst++) { in add_token()
302 ZVAL_COPY_PROP(dst, src); in add_token()
/PHP-8.2/win32/
H A Dioutil.h221 wchar_t *src = mb, *dst = ret + PHP_WIN32_IOUTIL_LONG_PATH_PREFIX_LENW; in php_win32_ioutil_conv_any_to_w() local
223 while (src < mb + mb_len) { in php_win32_ioutil_conv_any_to_w()
224 if (*src == PHP_WIN32_IOUTIL_FW_SLASHW) { in php_win32_ioutil_conv_any_to_w()
226 src++; in php_win32_ioutil_conv_any_to_w()
228 *dst++ = *src++; in php_win32_ioutil_conv_any_to_w()
/PHP-8.2/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() argument
333 *dest = *src; in mbfl_filt_conv_html_dec_copy()
335 memcpy(dest->opaque, src->opaque, html_enc_buffer_size+1); in mbfl_filt_conv_html_dec_copy()
/PHP-8.2/ext/spl/
H A Dspl_directory.h37 typedef void (*spl_foreign_clone_t)(spl_filesystem_object *src, spl_filesystem_object *dst);
/PHP-8.2/ext/intl/normalizer/
H A Dnormalizer_normalize.c57 static int32_t intl_normalize(zend_long form, const UChar *src, int32_t src_len, UChar *dst, int32_… in intl_normalize() argument
64 return unorm2_normalize(norm, src, src_len, dst, dst_len, err); in intl_normalize()

Completed in 111 milliseconds

12345678910