Searched defs:dst (Results 1 - 23 of 23) sorted by relevance

/PHP_5_5/ext/standard/
H A Dcrypt_blowfish.c377 #define BF_safe_atoi64(dst, src) \
384 (dst) = tmp; \
387 static int BF_decode(BF_word *dst, const char *src, int size) argument
389 unsigned char *dptr = (unsigned char *)dst;
414 static void BF_encode(char *dst, const BF_word *src, int size) argument
418 unsigned char *dptr = (unsigned char *)dst;
H A Dcrypt_sha256.c47 char * __php_stpncpy(char *dst, const char *src, size_t len) argument
53 return strncpy(dst, src, len) + n;
56 void * __php_mempcpy(void * dst, const void * src, size_t len) argument
58 return (((char *)memcpy(dst, src, len)) + len);
H A Duuencode.c192 char *src, *dst; local
199 dst_len = php_uuencode(src, src_len, &dst);
201 RETURN_STRINGL(dst, dst_len, 0);
209 char *src, *dst; local
216 dst_len = php_uudecode(src, src_len, &dst);
222 RETURN_STRINGL(dst, dst_len, 0);
/PHP_5_5/ext/zip/lib/
H A Dzip_error.c55 _zip_error_copy(struct zip_error *dst, struct zip_error *src)
57 dst->zip_err = src->zip_err;
58 dst->sys_err = src->sys_err;
52 _zip_error_copy(struct zip_error *dst, struct zip_error *src) argument
/PHP_5_5/sapi/fpm/fpm/
H A Dfpm_str.h8 static inline char *str_purify_filename(char *dst, char *src, size_t size) /* {{{ */ argument
12 d = dst;
13 end = dst + size - 1;
/PHP_5_5/ext/gd/libgd/
H A Dwebpimg.c151 static void ToRGB(int y, int u, int v, uint32* const dst) { argument
158 *dst = (r << RED_SHIFT) | (g << GREEN_SHIFT) | (b << BLUE_SHIFT);
H A Dgd_crop.c45 gdImagePtr dst; local
48 dst = gdImageCreateTrueColor(crop->width, crop->height);
49 gdImageSaveAlpha(dst, 1);
51 dst = gdImageCreate(crop->width, crop->height);
52 gdImagePaletteCopy(dst, src);
54 dst->transparent = src->transparent;
65 if (dst == NULL) {
73 memcpy(dst->tpixels[dst_y++], src->tpixels[y++] + crop->x, crop->width * 4);
79 dst->pixels[y - crop->y][x - crop->x] = src->pixels[y][x];
83 return dst;
[all...]
H A Dgd_matrix.c20 * dst - Where to store the resulting point
27 int gdAffineApplyToPointF (gdPointFPtr dst, const gdPointFPtr src, argument
34 dst->x = x * affine[0] + y * affine[2] + affine[4];
35 dst->y = x * affine[1] + y * affine[3] + affine[5];
45 * by <dst> (commutative) will return the identity affine (rounding
49 * dst - Where to store the resulting affine transform
60 int gdAffineInvert (double dst[6], const double src[6]) argument
69 dst[0] = src[3] * r_det;
70 dst[1] = -src[1] * r_det;
71 dst[
95 gdAffineFlip(double dst[6], const double src[6], const int flip_h, const int flip_v) argument
123 gdAffineConcat(double dst[6], const double m1[6], const double m2[6]) argument
152 gdAffineIdentity(double dst[6]) argument
174 gdAffineScale(double dst[6], const double scale_x, const double scale_y) argument
199 gdAffineRotate(double dst[6], const double angle) argument
224 gdAffineShearHorizontal(double dst[6], const double angle) argument
246 gdAffineShearVertical(double dst[6], const double angle) argument
269 gdAffineTranslate(double dst[6], const double offset_x, const double offset_y) argument
[all...]
H A Dgd_rotate.c20 void gdImageSkewX (gdImagePtr dst, gdImagePtr src, int uRow, int iOffset, double dWeight, int clrBack, int ignoretransparent) argument
43 gdImageSetPixel (dst, i, uRow, clrBack);
46 if (i < dst->sx) {
47 gdImageSetPixel (dst, i, uRow, clrBack);
85 if (ignoretransparent && pxlSrc == dst->transparent) {
86 pxlSrc = dst->transparent;
88 pxlSrc = gdImageColorAllocateAlpha(dst, r, g, b, a);
91 pxlSrc = gdImageColorClosestAlpha(dst, r, g, b, a);
95 if ((i + iOffset >= 0) && (i + iOffset < dst->sx)) {
96 gdImageSetPixel (dst,
117 gdImageSkewY(gdImagePtr dst, gdImagePtr src, int uCol, int iOffset, double dWeight, int clrBack, int ignoretransparent) argument
209 gdImagePtr dst; local
256 gdImagePtr dst; local
304 gdImagePtr dst; local
[all...]
H A Dgd.c97 static int gdLayerOverlay(int dst, int src);
98 static int gdAlphaOverlayColor(int src, int dst, int max);
2152 void gdImageCopy (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int w, int h) argument
2160 if (dst->trueColor) {
2170 gdImageSetPixel (dst, dstX + x, dstY + y, c);
2179 gdImageSetPixel(dst, dstX + x, dstY + y, gdTrueColorAlpha(src->red[c], src->green[c], src->blue[c], src->alpha[c]));
2197 nc = gdImageColorResolveAlpha(dst, gdTrueColorGetRed(c), gdTrueColorGetGreen(c), gdTrueColorGetBlue(c), gdTrueColorGetAlpha(c));
2199 gdImageSetPixel(dst, tox, toy, nc);
2228 mapTo = gdImageColorResolveAlpha (dst, gdTrueColorGetRed (c), gdTrueColorGetGreen (c), gdTrueColorGetBlue (c), gdTrueColorGetAlpha (c));
2231 if (dst
2251 gdImageCopyMerge(gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int w, int h, int pct) argument
2291 gdImageCopyMergeGray(gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int w, int h, int pct) argument
2345 gdImageCopyResized(gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH) argument
2455 gdImageCopyResampled(gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH) argument
2853 gdAlphaBlendOld(int dst, int src) argument
2875 gdAlphaBlend(int dst, int src) argument
2937 gdLayerOverlay(int dst, int src) argument
2949 gdAlphaOverlayColor(int src, int dst, int max ) argument
[all...]
H A Dgd_interpolation.c22 as each column is mapped from src to dst image. This lets
604 static inline int _color_blend (const int dst, const int src) argument
611 const int dst_alpha = gdTrueColorGetAlpha(dst);
613 if( src_alpha == gdAlphaTransparent ) return dst;
625 + gdTrueColorGetRed(dst) * dst_weight) / tot_weight;
627 + gdTrueColorGetGreen(dst) * dst_weight) / tot_weight;
629 + gdTrueColorGetBlue(dst) * dst_weight) / tot_weight;
967 static inline void _gdScaleRow(gdImagePtr pSrc, unsigned int src_width, gdImagePtr dst, unsigned int dst_width, unsigned int row, LineContribType *contrib) argument
970 int *p_dst_row = dst->tpixels[row];
1062 gdImagePtr dst; local
1081 Scale(const gdImagePtr src, const unsigned int src_width, const unsigned int src_height, const gdImagePtr dst, const unsigned int new_width, const unsigned int new_height) argument
1403 gdImagePtr dst; local
1675 gdImagePtr dst; local
1731 gdImagePtr dst; local
1797 gdImagePtr dst; local
1923 gdImagePtr dst; local
2261 gdTransformAffineGetImage(gdImagePtr *dst, const gdImagePtr src, gdRectPtr src_area, const double affine[6]) argument
2327 gdTransformAffineCopy(gdImagePtr dst, int dst_x, int dst_y, const gdImagePtr src, gdRectPtr src_region, const double affine[6]) argument
[all...]
/PHP_5_5/Zend/
H A Dzend_llist.c158 ZEND_API void zend_llist_copy(zend_llist *dst, zend_llist *src) argument
162 zend_llist_init(dst, src->size, src->dtor, src->persistent);
165 zend_llist_add_element(dst, ptr->data);
/PHP_5_5/ext/date/lib/
H A Dtimelib_structs.h160 signed int dst; /* Flag if we were parsing a DST zone */ member in struct:timelib_time
H A Dunixtime2tm.c130 tm->dst = 0;
147 signed int dst = tm->dst; local
149 timelib_unixtime2gmt(tm, tm->sse - (tm->z * 60) + (tm->dst * 3600));
152 tm->dst = dst;
185 signed int dst = tm->dst; local
187 timelib_unixtime2gmt(tm, ts - (tm->z * 60) + (tm->dst * 3600));
190 tm->dst
[all...]
H A Dparse_iso_intervals.c193 static long timelib_get_zone(char **ptr, int *dst, timelib_time *t, int *tz_not_found, const timelib_tzdb *tzdb) argument
210 t->dst = 0;
218 t->dst = 0;
1059 in.begin->dst = 0;
1072 in.end->dst = 0;
H A Dparse_date.c726 static long timelib_lookup_zone(char **ptr, int *dst, char **tz_abbr, int *found) argument
742 *dst = tp->type;
753 static long timelib_get_zone(char **ptr, int *dst, timelib_time *t, int *tz_not_found, const timelib_tzdb *tzdb, timelib_tz_get_wrapper tz_wrapper) argument
771 t->dst = 0;
779 t->dst = 0;
789 offset = timelib_lookup_zone(ptr, dst, &tz_abbr, &found);
1008 s->time->z = timelib_get_zone((char **) &ptr, &s->time->dst, s->time, &tz_not_found, s->tzdb, tz_get_wrapper);
4470 s->time->z = timelib_get_zone((char **) &ptr, &s->time->dst, s->time, &tz_not_found, s->tzdb, tz_get_wrapper);
9800 s->time->z = timelib_get_zone((char **) &ptr, &s->time->dst, s->time, &tz_not_found, s->tzdb, tz_get_wrapper);
12075 s->time->z = timelib_get_zone((char **) &ptr, &s->time->dst,
[all...]
/PHP_5_5/ext/pdo/
H A Dpdo.c323 char *dst = outbuf; local
327 *dst++ = '-';
331 *dst++ = '0';
332 *dst++ = '\0';
351 while ((*dst++ = *p++) != 0)
353 *dst = '\0';
/PHP_5_5/main/
H A Dsnprintf.c139 char *digits, *dst, *src; local
153 dst = buf;
155 *dst++ = '-';
167 *dst++ = *src++;
168 *dst++ = dec_point;
170 *dst++ = '0';
173 *dst++ = *src++;
176 *dst++ = exponent;
178 *dst++ = '-';
180 *dst
[all...]
/PHP_5_5/ext/mysqlnd/
H A Dmysqlnd_auth.c466 mysqlnd_xor_string(char * dst, const size_t dst_len, const char * xor_str, const size_t xor_str_len) argument
470 dst[i] ^= xor_str[i % xor_str_len];
/PHP_5_5/ext/date/
H A Dphp_date.h146 int dst; member in struct:_php_timezone_obj::__anon2::__anon3
H A Dphp_date.c1058 offset->offset = (t->z - (t->dst * 60)) * -60;
1060 offset->is_dst = t->dst;
1269 offset->offset = (t->z - (t->dst * 60)) * -60;
1271 offset->is_dst = t->dst;
1275 offset->offset = (t->z - (t->dst * 60)) * -60;
1277 offset->is_dst = t->dst;
1486 long hou = 0, min = 0, sec = 0, mon = 0, day = 0, yea = 0, dst = -1; local
1492 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|lllllll", &hou, &min, &sec, &mon, &day, &yea, &dst) == FAILURE) {
1542 if (dst != -1) {
1546 if (dst
[all...]
/PHP_5_5/ext/gd/
H A Dgd.c414 ZEND_ARG_INFO(0, dst)
2825 /* {{{ proto void imagepalettecopy(resource dst, resource src)
2826 Copy the palette from the src image onto the dst image */
2830 gdImagePtr dst, src; local
2836 ZEND_FETCH_RESOURCE(dst, gdImagePtr, &dstim, -1, "Image", le_gd);
2839 gdImagePaletteCopy(dst, src);
5108 /* {{{ proto resource imageaffine(resource dst, resource src, array affine, array clip)
5114 gdImagePtr dst; local
5197 //int gdTransformAffineGetImage(gdImagePtr *dst, const gdImagePtr src, gdRectPtr src_area, const double affine[6]);
5198 if (gdTransformAffineGetImage(&dst, sr
[all...]
/PHP_5_5/ext/fileinfo/libmagic/
H A Dsoftmagic.c1049 char *dst = p->s; local
1061 for (/*EMPTY*/; src < esrc; src += 2, dst++) {
1062 if (dst < edst)
1063 *dst = *src;
1066 if (*dst == '\0') {
1070 *dst = ' ';

Completed in 71 milliseconds