Home
last modified time | relevance | path

Searched refs:src (Results 201 – 225 of 253) sorted by relevance

1234567891011

/php-src/ext/standard/
H A Dstreamsfuncs.c495 php_stream *src, *dest; in PHP_FUNCTION() local
514 php_stream_from_zval(src, zsrc); in PHP_FUNCTION()
517 if (pos > 0 && php_stream_seek(src, pos, SEEK_SET) < 0) { in PHP_FUNCTION()
522 ret = php_stream_copy_to_stream_ex(src, dest, maxlen, &len); in PHP_FUNCTION()
H A Darray.c4024 ZEND_HASH_FOREACH_STR_KEY_VAL(src, string_key, src_entry) {
4100 if (HT_IS_PACKED(dest) && HT_IS_PACKED(src)) {
4103 ZEND_HASH_PACKED_FOREACH_VAL(src, src_entry) {
4113 ZEND_HASH_FOREACH_STR_KEY_VAL(src, string_key, src_entry) {
4137 ZEND_HASH_FOREACH_KEY_VAL(src, num_key, string_key, src_entry) {
4256 HashTable *src, *dest; local
4310 src = Z_ARRVAL_P(arg);
4313 if (HT_IS_PACKED(src)) {
4316 dest = src;
4325 ZEND_HASH_PACKED_FOREACH_VAL(src, src_entry) {
[all …]
H A Dstring.c2190 static zend_string *php_chunk_split(const char *src, size_t srclen, const char *end, size_t endlen,… argument
2208 for (p = src, q = ZSTR_VAL(dest); p < (src + srclen - chunklen + 1); ) {
2871 __m128i src = _mm_loadu_si128((__m128i*)(input)); local
2872 __m128i mask = _mm_cmpeq_epi8(src, search);
2878 _mm_add_epi8(src,
2884 src = _mm_loadu_si128((__m128i*)(input));
2885 mask = _mm_cmpeq_epi8(src, search);
2887 _mm_add_epi8(src,
3090 __m128i src = _mm_loadu_si128((__m128i*)(p)); local
3091 uint32_t mask = _mm_movemask_epi8(_mm_cmpeq_epi8(src, search));
H A Durl_scanner_ex.re165 …STD_PHP_INI_ENTRY("session.trans_sid_tags", "a=href,area=href,frame=src,form=", PHP_INI_ALL, OnUpd…
625 static char *url_adapt_ext(const char *src, size_t srclen, size_t *newlen, bool do_flush, url_adapt…
629 xx_mainloop(ctx, src, srclen);
/php-src/docs/source/introduction/
H A Dhigh-level-overview.rst9 to performance, which is one of the primary reasons interpreters can be complex. php-src borrows
24 php-src as a whole can be seen as a pipeline consisting of these stages, using the input of the
/php-src/ext/ftp/
H A Dphp_ftp.c1133 char *src, *dest; in PHP_FUNCTION() local
1136 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Oss", &z_ftp, php_ftp_ce, &src, &src_len, &dest, &dest… in PHP_FUNCTION()
1142 if (!ftp_rename(ftp, src, src_len, dest, dest_len)) { in PHP_FUNCTION()
/php-src/ext/opcache/jit/ir/
H A Dir_x86.dasc2953 ir_insn *insn = &ctx->ir_base[src];
2969 label = ir_const_label(ctx, src);
3008 if (IR_IS_CONST_REF(src)) {
3027 } else if (ctx->vregs[src]) {
3030 ir_load_local_addr(ctx, reg, src);
3064 IR_ASSERT(IR_IS_CONST_REF(src));
3156 | movsx Rd(dst), Rw(src)
3158 | movzx Rd(dst), Rw(src)
3162 | movsx Rd(dst), Rb(src)
3164 | movzx Rd(dst), Rb(src)
[all …]
H A Dir_aarch64.dasc151 | op Rx(dst), Rx(src)
153 | op Rw(dst), Rw(src)
1318 ir_insn *insn = &ctx->ir_base[src];
1326 label = ir_const_label(ctx, src);
1398 if (IR_IS_CONST_REF(src)) {
1418 } else if (ctx->vregs[src]) {
1536 | mov sp, Rx(src)
1540 | mov Rx(dst), Rx(src)
1543 | mov Rw(dst), Rw(src)
1553 | mov Rx(dst), Rx(src)
[all …]
H A Dir_builder.h630 void _ir_PHI_SET_OP(ir_ctx *ctx, ir_ref phi, ir_ref pos, ir_ref src);
657 void _ir_VA_COPY(ir_ctx *ctx, ir_ref dst, ir_ref src);
660 void _ir_ENTRY(ir_ctx *ctx, ir_ref src, ir_ref num);
661 void _ir_BEGIN(ir_ctx *ctx, ir_ref src);
672 void _ir_MERGE_SET_OP(ir_ctx *ctx, ir_ref merge, ir_ref pos, ir_ref src);
H A Dir_ra.c2113 ir_ref *loc, *pred, *src, *dst, i, *p, ref, input; in ir_gen_dessa_moves() local
2134 src = pred + ctx->vregs_count + 1; in ir_gen_dessa_moves()
2135 dst = src + ctx->vregs_count + 1; in ir_gen_dessa_moves()
2149 src[s] = input; in ir_gen_dessa_moves()
2159 src[0] = dst[0] = 0; in ir_gen_dessa_moves()
2183 emit_copy(ctx, ctx->ir_base[dst[b]].type, src[c], dst[b]); in ir_gen_dessa_moves()
2186 src[b] = dst[b]; in ir_gen_dessa_moves()
2196 emit_copy(ctx, ctx->ir_base[src[b]].type, src[b], 0); in ir_gen_dessa_moves()
/php-src/Zend/
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()
H A Dzend_API.c1566 zval *src, *dst, *end; in zend_update_class_constants() local
1571 src = class_type->default_properties_table; in zend_update_class_constants()
1575 ZVAL_COPY_PROP(dst, src); in zend_update_class_constants()
1576 src++; in zend_update_class_constants()
1641 ZEND_ASSERT(!Z_REFCOUNTED_P(src)); in _object_properties_init()
1642 ZVAL_COPY_VALUE_PROP(dst, src); in _object_properties_init()
1643 src++; in _object_properties_init()
1645 } while (src != end); in _object_properties_init()
1648 ZVAL_COPY_PROP(dst, src); in _object_properties_init()
1649 src++; in _object_properties_init()
[all …]
H A Dzend_language_scanner.l124 char *src = str, *dest = str; in strip_underscores() local
125 while (*src != '\0') { in strip_underscores()
126 if (*src != '_') { in strip_underscores()
127 *dest = *src; in strip_underscores()
132 src++; in strip_underscores()
H A Dzend_execute.c3941 zval *src; in zend_copy_extra_args() local
3957 src = EX_VAR_NUM(num_args - 1); in zend_copy_extra_args()
3963 type_flags |= Z_TYPE_INFO_P(src); in zend_copy_extra_args()
3964 ZVAL_COPY_VALUE((zval*)(((char*)src) + delta), src); in zend_copy_extra_args()
3965 ZVAL_UNDEF(src); in zend_copy_extra_args()
3966 src--; in zend_copy_extra_args()
3973 if (Z_REFCOUNTED_P(src)) { in zend_copy_extra_args()
3977 src--; in zend_copy_extra_args()
4171 zval *src = ZEND_CALL_ARG(call, 1); in zend_vm_stack_copy_call_frame() local
4174 ZVAL_COPY_VALUE(dst, src); in zend_vm_stack_copy_call_frame()
[all …]
/php-src/ext/standard/tests/general_functions/
H A Durl_rewriting_basic3.phpt6 session.trans_sid_tags="a=href,area=href,frame=src,form="
7 url_rewriter.tags="a=href,area=href,frame=src,form="
H A Durl_rewriting_basic2.phpt6 session.trans_sid_tags="a=href,area=href,frame=src,form="
7 url_rewriter.tags="a=href,area=href,frame=src,form="
/php-src/docs-old/
H A Dstreams.md107 PHPAPI size_t php_stream_copy_to_stream(php_stream *src,
111 If you want to copy all remaining data from the src stream, pass
120 PHPAPI size_t php_stream_copy_to_mem(php_stream *src, char **buf,
H A Dself-contained-extensions.md38 cp -rp php-src/ext/mysqli/* .
/php-src/.github/scripts/windows/
H A Dtest_task.bat87 rem work-around for failing to dl(mysqli) with OPcache (https://github.com/php/php-src/issues/8508)
/php-src/ext/dom/
H A Dxml_serializer.c138 …nline void dom_xml_ns_prefix_map_copy(dom_xml_ns_prefix_map *dst, const dom_xml_ns_prefix_map *src) in dom_xml_ns_prefix_map_copy() argument
140 dst->ht = src->ht; in dom_xml_ns_prefix_map_copy()
/php-src/main/
H A Dphp_variables.c754 static void php_autoglobal_merge(HashTable *dest, HashTable *src) in php_autoglobal_merge() argument
761 ZEND_HASH_FOREACH_KEY_VAL(src, num_key, string_key, src_entry) { in php_autoglobal_merge()
/php-src/win32/build/
H A Dconfig.w32383 // Config profiles (--with-config-profile=<name>) will save a certain config to php-src/config.<nam…
387 ARG_WITH('config-profile', 'Name of the configuration profile to save this to in php-src/config.nam…
/php-src/
H A D.gitignore292 !/ext/bcmath/libbcmath/src/config.h
/php-src/ext/gd/
H A Dgd.c2040 gdImagePtr dst, src; in PHP_FUNCTION() local
2046 src = php_gd_libgdimageptr_from_zval_p(srcim); in PHP_FUNCTION()
2049 gdImagePaletteCopy(dst, src); in PHP_FUNCTION()
3655 gdImagePtr src; in PHP_FUNCTION() local
3670 src = php_gd_libgdimageptr_from_zval_p(IM); in PHP_FUNCTION()
3727 if (gdTransformAffineGetImage(&dst, src, pRect, affine) != GD_TRUE) { in PHP_FUNCTION()
/php-src/ext/opcache/jit/ir/dynasm/
H A Dminilua.c7417 const char*src;
7422 src<=ms.src_end;
7423 src++){
7428 if(e==src)newstart++;
7509 ms.src_init=src;
7510 ms.src_end=src+srcl;
7514 e=match(&ms,src,p);
7519 if(e&&e>src)
7520 src=e;
7521 else if(src<ms.src_end)
[all …]

Completed in 191 milliseconds

1234567891011