| /PHP_5_3/ext/standard/ |
| H A D | crypt_blowfish.c | 377 #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 D | crypt_sha256.c | 47 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 D | uuencode.c | 192 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_3/ext/zip/lib/ |
| H A D | zip_error.c | 55 _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_3/sapi/fpm/fpm/ |
| H A D | fpm_str.h | 8 static inline char *str_purify_filename(char *dst, char *src, size_t size) /* {{{ */ argument 12 d = dst; 13 end = dst + size - 1;
|
| /PHP_5_3/win32/ |
| H A D | inet.c | 10 PHPAPI int inet_pton(int af, const char* src, void* dst) argument 33 memcpy (dst, &sin->sin_addr, sizeof (struct in_addr)); 37 memcpy (dst, &sin6->sin6_addr, sizeof (struct in6_addr)); 46 PHPAPI const char* inet_ntop(int af, const void* src, char* dst, size_t size) argument 72 if (WSAAddressToString ((LPSOCKADDR) &sa, address_length, NULL, dst, &string_length) == 0) { 73 return dst;
|
| /PHP_5_3/ext/fileinfo/libmagic/ |
| H A D | softmagic.c | 943 char *dst = p->s; local 955 for (/*EMPTY*/; src < esrc; src += 2, dst++) { 956 if (dst < edst) 957 *dst = *src; 960 if (*dst == '\0') { 964 *dst = ' ';
|
| /PHP_5_3/ext/gd/libgd/ |
| H A D | gd.c | 97 static int gdLayerOverlay(int dst, int src); 98 static int gdAlphaOverlayColor(int src, int dst, int max); 2151 void gdImageCopy (gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int w, int h) argument 2159 if (dst->trueColor) { 2169 gdImageSetPixel (dst, dstX + x, dstY + y, c); 2178 gdImageSetPixel(dst, dstX + x, dstY + y, gdTrueColorAlpha(src->red[c], src->green[c], src->blue[c], src->alpha[c])); 2196 nc = gdImageColorResolveAlpha(dst, gdTrueColorGetRed(c), gdTrueColorGetGreen(c), gdTrueColorGetBlue(c), gdTrueColorGetAlpha(c)); 2198 gdImageSetPixel(dst, tox, toy, nc); 2227 mapTo = gdImageColorResolveAlpha (dst, gdTrueColorGetRed (c), gdTrueColorGetGreen (c), gdTrueColorGetBlue (c), gdTrueColorGetAlpha (c)); 2230 if (dst 2250 gdImageCopyMerge(gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int w, int h, int pct) argument 2290 gdImageCopyMergeGray(gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int w, int h, int pct) argument 2344 gdImageCopyResized(gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH) argument 2457 gdImageCopyResampled(gdImagePtr dst, gdImagePtr src, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH) argument 2855 gdAlphaBlendOld(int dst, int src) argument 2877 gdAlphaBlend(int dst, int src) argument 2939 gdLayerOverlay(int dst, int src) argument 2951 gdAlphaOverlayColor(int src, int dst, int max ) argument [all...] |
| H A D | gd_rotate.c | 20 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...] |
| /PHP_5_3/ext/date/lib/ |
| H A D | parse_date.c | 761 static long timelib_lookup_zone(char **ptr, int *dst, char **tz_abbr, int *found) argument 777 *dst = tp->type; 788 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 806 t->dst = 0; 814 t->dst = 0; 824 offset = timelib_lookup_zone(ptr, dst, &tz_abbr, &found); 1043 s->time->z = timelib_get_zone((char **) &ptr, &s->time->dst, s->time, &tz_not_found, s->tzdb, tz_get_wrapper); 4505 s->time->z = timelib_get_zone((char **) &ptr, &s->time->dst, s->time, &tz_not_found, s->tzdb, tz_get_wrapper); 9835 s->time->z = timelib_get_zone((char **) &ptr, &s->time->dst, s->time, &tz_not_found, s->tzdb, tz_get_wrapper); 12110 s->time->z = timelib_get_zone((char **) &ptr, &s->time->dst, [all...] |
| H A D | parse_iso_intervals.c | 228 static long timelib_get_zone(char **ptr, int *dst, timelib_time *t, int *tz_not_found, const timelib_tzdb *tzdb) argument 245 t->dst = 0; 253 t->dst = 0; 1094 in.begin->dst = 0; 1107 in.end->dst = 0;
|
| H A D | timelib_structs.h | 160 signed int dst; /* Flag if we were parsing a DST zone */ member in struct:timelib_time
|
| H A D | unixtime2tm.c | 130 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...] |
| /PHP_5_3/ext/pdo/ |
| H A D | pdo.c | 323 char *dst = outbuf; local 327 *dst++ = '-'; 331 *dst++ = '0'; 332 *dst++ = '\0'; 351 while ((*dst++ = *p++) != 0) 353 *dst = '\0';
|
| /PHP_5_3/main/ |
| H A D | snprintf.c | 139 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_3/Zend/ |
| H A D | zend_llist.c | 160 ZEND_API void zend_llist_copy(zend_llist *dst, zend_llist *src) argument 164 zend_llist_init(dst, src->size, src->dtor, src->persistent); 167 zend_llist_add_element(dst, ptr->data);
|
| /PHP_5_3/ext/gd/ |
| H A D | gd.c | 455 ZEND_ARG_INFO(0, dst) 2911 /* {{{ proto void imagepalettecopy(resource dst, resource src) 2912 Copy the palette from the src image onto the dst image */ 2916 gdImagePtr dst, src; local 2922 ZEND_FETCH_RESOURCE(dst, gdImagePtr, &dstim, -1, "Image", le_gd); 2925 gdImagePaletteCopy(dst, src);
|
| /PHP_5_3/ext/date/ |
| H A D | php_date.c | 1050 offset->offset = (t->z - (t->dst * 60)) * -60; 1052 offset->is_dst = t->dst; 1259 offset->offset = (t->z - (t->dst * 60)) * -60; 1261 offset->is_dst = t->dst; 1265 offset->offset = (t->z - (t->dst * 60)) * -60; 1267 offset->is_dst = t->dst; 1478 long hou = 0, min = 0, sec = 0, mon = 0, day = 0, yea = 0, dst = -1; local 1484 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|lllllll", &hou, &min, &sec, &mon, &day, &yea, &dst) == FAILURE) { 1534 if (dst != -1) { 1538 if (dst [all...] |
| H A D | php_date.h | 131 int dst; member in struct:_php_timezone_obj::__anon2::__anon3
|