Home
last modified time | relevance | path

Searched refs:src (Results 151 – 175 of 253) sorted by relevance

1234567891011

/php-src/Zend/tests/
H A Dgc_049.phpt25 $isSecondGcRerun = false; // https://github.com/php/php-src/commit/b58d74547f
H A Dbug63217.phpt53 * @see https://github.com/php/php-src/pull/2607#issuecomment-313781748
/php-src/.github/workflows/
H A Dclose-stale-feature-requests.yml12 if: github.repository == 'php/php-src'
H A Dpush.yml46 if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
152 if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
194 if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
221 if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
/php-src/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 …]
H A Dzend_string.c511 size_t strlcpy(char *__restrict dest, const char *__restrict src, size_t n) in strlcpy() argument
516 size_t result = libc_strlcpy(dest, src, n); in strlcpy()
521 size_t strlcat (char *__restrict dest, const char *restrict src, size_t n) in strlcat() argument
526 size_t result = libc_strlcat(dest, src, n); in strlcat()
H A Dzend_llist.h55 ZEND_API void zend_llist_copy(zend_llist *dst, zend_llist *src);
/php-src/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-src/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-src/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-src/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()
H A Dioutil.c323 wchar_t *src, *dst; in php_win32_ioutil_mkdir_w() local
330 src = tmp; in php_win32_ioutil_mkdir_w()
332 while (src < tmp + path_len) { in php_win32_ioutil_mkdir_w()
333 if (*src == PHP_WIN32_IOUTIL_FW_SLASHW) { in php_win32_ioutil_mkdir_w()
335 src++; in php_win32_ioutil_mkdir_w()
337 *dst++ = *src++; in php_win32_ioutil_mkdir_w()
/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() 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-src/ext/spl/
H A Dspl_directory.h37 typedef void (*spl_foreign_clone_t)(spl_filesystem_object *src, spl_filesystem_object *dst);
/php-src/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()
/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_variation14.phpt2 Test copy() function: usage variations - non existing src/dest
/php-src/ext/opcache/jit/
H A Dzend_jit.c1021 int k, src; in zend_jit_allocate_registers() local
1024 src = phi->sources[0]; in zend_jit_allocate_registers()
1026 if (!ra[src].ref) { in zend_jit_allocate_registers()
1038 src = phi->sources[k]; in zend_jit_allocate_registers()
1039 if (src >= 0) { in zend_jit_allocate_registers()
1044 src = ssa->vars[src].definition_phi->sources[0]; in zend_jit_allocate_registers()
1047 if (!ra[src].ref) { in zend_jit_allocate_registers()
1060 src = phi->sources[k]; in zend_jit_allocate_registers()
1061 if (src >= 0) { in zend_jit_allocate_registers()
1066 src = ssa->vars[src].definition_phi->sources[0]; in zend_jit_allocate_registers()
[all …]
/php-src/docs/source/core/data-structures/
H A Dzend_string.rst14 php-src uses the ``zend_string`` struct as an abstraction over ``char*``, which explicitly stores
104 As per php-src fashion, you are not supposed to access the ``zend_string`` fields directly. Instead,
169 within your program. Instead, when repeated strings are expected, php-src uses a technique called
171 strings are stored. When creating a new interned string, php-src first checks the interned string
/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()
2303 return XXH_readBE32(src); in XXH32_hashFromCanonical()
2704 return XXH_readBE64(src); in XXH64_hashFromCanonical()
3833 XXH_ASSERT(((size_t)src & 63) == 0); /* control alignment */ in XXH3_initCustomSecret_avx512()
3842 remote_const_void.cp = src + i; in XXH3_initCustomSecret_avx512()
3939 XXH_ASSERT(((size_t)src & 31) == 0); /* control alignment */ in XXH3_initCustomSecret_avx2()
3943 dest[0] = _mm256_add_epi64(_mm256_stream_load_si256(src+0), seed); in XXH3_initCustomSecret_avx2()
5520 XXH128_hashFromCanonical(const XXH128_canonical_t* src) in XXH128_hashFromCanonical() argument
5523 h.high64 = XXH_readBE64(src); in XXH128_hashFromCanonical()
[all …]
/php-src/ext/mbstring/tests/
H A Dillformed_utf_sequences.phpt8 $src = bin2hex(mb_convert_encoding($str, "UCS-4BE", $enc));
10 if ($dst == $src) {
13 return $src;
/php-src/sapi/fuzzer/
H A DREADME.md93 export ONIG_CFLAGS="-I$PWD/oniguruma/src"
94 export ONIG_LIBS="-L$PWD/oniguruma/src/.libs -l:libonig.a"
/php-src/ext/odbc/tests/
H A Dodbc_persistent_close.phpt9 …die('skip libmsodbcsql leaks, see https://github.com/php/php-src/pull/12132#issuecomment-171039229…
/php-src/ext/dom/lexbor/lexbor/core/
H A Dmraw.c425 lexbor_mraw_dup_noi(lexbor_mraw_t *mraw, const void *src, size_t size) in lexbor_mraw_dup_noi() argument
427 return lexbor_mraw_dup(mraw, src, size); in lexbor_mraw_dup_noi()
/php-src/ext/standard/
H A Dpack.c182 static float php_pack_parse_float(int is_little_endian, void * src) in php_pack_parse_float() argument
188 memcpy(&m.i, src, sizeof(float)); in php_pack_parse_float()
205 static double php_pack_parse_double(int is_little_endian, void * src) in php_pack_parse_double() argument
211 memcpy(&m.i, src, sizeof(double)); in php_pack_parse_double()

Completed in 83 milliseconds

1234567891011