Home
last modified time | relevance | path

Searched refs:dst (Results 76 – 86 of 86) sorted by relevance

1234

/PHP-7.0/ext/fileinfo/libmagic/
H A Dsoftmagic.c1146 char *dst = p->s; in mcopy() local
1155 for (/*EMPTY*/; src < esrc; src += 2, dst++) { in mcopy()
1156 if (dst < edst) in mcopy()
1157 *dst = *src; in mcopy()
1160 if (*dst == '\0') { in mcopy()
1164 *dst = ' '; in mcopy()
/PHP-7.0/ext/standard/tests/file/windows_acls/
H A Dcommon.inc138 $dst = realpath($name);
/PHP-7.0/ext/standard/
H A Dcrypt_sha512.c40 extern void * __php_mempcpy(void * dst, const void * src, size_t len);
41 extern char * __php_stpncpy(char *dst, const char *src, size_t len);
/PHP-7.0/ext/gd/
H A Dgd.c422 ZEND_ARG_INFO(0, dst)
2803 gdImagePtr dst, src; in PHP_FUNCTION() local
2809 if ((dst = (gdImagePtr)zend_fetch_resource(Z_RES_P(dstim), "Image", le_gd)) == NULL) { in PHP_FUNCTION()
2817 gdImagePaletteCopy(dst, src); in PHP_FUNCTION()
4751 gdImagePtr dst; in PHP_FUNCTION() local
4830 if (gdTransformAffineGetImage(&dst, src, pRect, affine) != GD_TRUE) { in PHP_FUNCTION()
4834 if (dst == NULL) { in PHP_FUNCTION()
4837 RETURN_RES(zend_register_resource(dst, le_gd)); in PHP_FUNCTION()
/PHP-7.0/Zend/
H A Dzend_builtin_functions.c791 static void copy_constant_array(zval *dst, zval *src) /* {{{ */ in copy_constant_array() argument
797 array_init_size(dst, zend_hash_num_elements(Z_ARRVAL_P(src))); in copy_constant_array()
802 new_val = zend_hash_add_new(Z_ARRVAL_P(dst), key, val); in copy_constant_array()
804 new_val = zend_hash_index_add_new(Z_ARRVAL_P(dst), idx, val); in copy_constant_array()
H A Dzend_API.c1174 zval *dst = object->properties_table; in object_properties_init() local
1179 ZVAL_DUP(dst, src); in object_properties_init()
1181 ZVAL_COPY(dst, src); in object_properties_init()
1184 dst++; in object_properties_init()
/PHP-7.0/ext/date/lib/
H A Dparse_tz.c519 return (t->z + t->dst) * -60; in timelib_get_current_offset()
H A Dparse_date.c721 static timelib_long timelib_lookup_abbr(char **ptr, int *dst, char **tz_abbr, int *found) in timelib_lookup_abbr() argument
737 *dst = tp->type; in timelib_lookup_abbr()
766 t->dst = 0; in timelib_parse_zone()
774 t->dst = 0; in timelib_parse_zone()
785 offset = timelib_lookup_abbr(ptr, dst, &tz_abbr, &found); in timelib_parse_zone()
20456 s->time->dst = 0; in scan()
23894 in.time->dst = TIMELIB_UNSET; in timelib_strtotime()
23987 in.time->dst = TIMELIB_UNSET; in timelib_parse_from_format()
24151 s->time->dst = 0; in timelib_parse_from_format()
24312 if (parsed->dst == TIMELIB_UNSET) parsed->dst = now->dst != TIMELIB_UNSET ? now->dst : 0; in timelib_fill_holes()
[all …]
/PHP-7.0/ext/imap/
H A Dphp_imap.c88 char *cpytxt(SIZEDTEXT *dst, char *text, unsigned long size);
90 long utf8_mime2text(SIZEDTEXT *src, SIZEDTEXT *dst);
92 long utf8_mime2text (SIZEDTEXT *src, SIZEDTEXT *dst, long flags);
/PHP-7.0/ext/pcre/pcrelib/
H A Dpcre_jit_compile.c519 #define OP1(op, dst, dstw, src, srcw) \ argument
520 sljit_emit_op1(compiler, (op), (dst), (dstw), (src), (srcw))
521 #define OP2(op, dst, dstw, src1, src1w, src2, src2w) \ argument
522 sljit_emit_op2(compiler, (op), (dst), (dstw), (src1), (src1w), (src2), (src2w))
537 #define OP_FLAGS(op, dst, dstw, src, srcw, type) \ argument
538 sljit_emit_op_flags(compiler, (op), (dst), (dstw), (src), (srcw), (type))
539 #define GET_LOCAL_BASE(dst, dstw, offset) \ argument
540 sljit_get_local_base(compiler, (dst), (dstw), (offset))
/PHP-7.0/ext/phar/
H A Dphar_object.c1125 static void phar_spl_foreign_clone(spl_filesystem_object *src, spl_filesystem_object *dst) /* {{{ */ in phar_spl_foreign_clone() argument
1127 phar_archive_data *phar_data = (phar_archive_data *) dst->oth; in phar_spl_foreign_clone()

Completed in 660 milliseconds

1234