| /PHP_TRUNK/ext/bcmath/libbcmath/ |
| H A D | install-sh | 41 src="" 82 *) if [ x"$src" = x ] 84 src=$1 95 if [ x"$src" = x ] 104 dst=$src 105 src="" 114 # Waiting for this to be detected by the "$instcmd $src $dsttmp" command 116 # if $src (and thus $dsttmp) contains '*'. 118 if [ -f $src -o -d $src ] [all...] |
| /PHP_TRUNK/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; 114 _zip_error_set_from_source(struct zip_error *err, struct zip_source *src) 118 zip_source_error(src, &ze, &se); 52 _zip_error_copy(struct zip_error *dst, struct zip_error *src) argument 106 _zip_error_set_from_source(struct zip_error *err, struct zip_source *src) argument
|
| H A D | zip_fopen_index_encrypted.c | 55 struct zip_source *src, *s2; 110 if ((src=zip_source_buffer(za, NULL, 0, 0)) == NULL) 114 if ((src=_zip_source_file_or_p(za, NULL, za->zp, start, st.comp_size, 118 if ((s2=enc_impl(za, src, ZIP_EM_TRAD_PKWARE, 0, 120 zip_source_free(src); 124 src = s2; 127 if ((s2=comp_impl(za, src, za->cdir->entry[fileno].comp_method, 129 zip_source_free(src); 133 src = s2; 137 if ((s2=zip_source_crc(za, src, 53 struct zip_source *src, *s2; local [all...] |
| H A D | zip_fread.c | 61 if ((n=zip_source_read(zf->src, outbuf, toread)) < 0) { 62 _zip_error_set_from_source(&zf->error, zf->src);
|
| H A D | zip_source_close.c | 43 zip_source_close(struct zip_source *src) 45 if (!src->is_open) 48 if (src->src == NULL) 49 (void)src->cb.f(src->ud, NULL, 0, ZIP_SOURCE_CLOSE); 51 (void)src->cb.l(src->src, src 41 zip_source_close(struct zip_source *src) argument [all...] |
| H A D | zip_source_error.c | 43 zip_source_error(struct zip_source *src, int *ze, int *se) 47 if (src->src == NULL) { 50 switch (src->error_source) { 52 if (src->src == NULL) { 53 if (src->cb.f(src->ud, e, sizeof(e), ZIP_SOURCE_ERROR) < 0) { 68 zip_source_error(src->src, z 41 zip_source_error(struct zip_source *src, int *ze, int *se) argument [all...] |
| H A D | zip_source_free.c | 45 zip_source_free(struct zip_source *src) 47 if (src == NULL) 50 if (src->is_open) 51 zip_source_close(src); 53 if (src->src == NULL) 54 (void)src->cb.f(src->ud, NULL, 0, ZIP_SOURCE_FREE); 56 (void)src->cb.l(src 43 zip_source_free(struct zip_source *src) argument [all...] |
| H A D | zip_source_function.c | 67 struct zip_source *src; 69 if ((src=(struct zip_source *)malloc(sizeof(*src))) == NULL) { 74 src->src = NULL; 75 src->cb.f = NULL; 76 src->ud = NULL; 77 src->error_source = ZIP_LES_NONE; 78 src->is_open = 0; 80 return src; 64 struct zip_source *src; local [all...] |
| H A D | zip_source_layered.c | 45 zip_source_layered(struct zip *za, struct zip_source *src, 56 zs->src = src; 43 zip_source_layered(struct zip *za, struct zip_source *src, zip_source_layered_callback cb, void *ud) argument
|
| H A D | zip_source_open.c | 43 zip_source_open(struct zip_source *src) 47 if (src->is_open) { 48 src->error_source = ZIP_LES_INVAL; 52 if (src->src == NULL) { 53 if (src->cb.f(src->ud, NULL, 0, ZIP_SOURCE_OPEN) < 0) 57 if (zip_source_open(src->src) < 0) { 58 src 41 zip_source_open(struct zip_source *src) argument [all...] |
| H A D | zip_source_pop.c | 45 zip_source_pop(struct zip_source *src) 49 if (src == NULL) 52 lower = src->src; 55 zip_source_free(src); 57 if (src->is_open) 58 (void)src->cb.l(src, src->ud, NULL, 0, ZIP_SOURCE_CLOSE); 59 (void)src 43 zip_source_pop(struct zip_source *src) argument [all...] |
| H A D | zip_source_read.c | 43 zip_source_read(struct zip_source *src, void *data, zip_uint64_t len) 47 if (!src->is_open || len > ZIP_INT64_MAX || (len > 0 && data == NULL)) { 48 src->error_source = ZIP_LES_INVAL; 52 if (src->src == NULL) 53 return src->cb.f(src->ud, data, len, ZIP_SOURCE_READ); 55 ret = src->cb.l(src->src, sr [all...] |
| H A D | zip_source_stat.c | 43 zip_source_stat(struct zip_source *src, struct zip_stat *st) 48 src->error_source = ZIP_LES_INVAL; 52 if (src->src == NULL) { 53 if (src->cb.f(src->ud, st, sizeof(*st), ZIP_SOURCE_STAT) < 0) 58 if (zip_source_stat(src->src, st) < 0) { 59 src->error_source = ZIP_LES_LOWER; 63 ret = src 41 zip_source_stat(struct zip_source *src, struct zip_stat *st) argument [all...] |
| /PHP_TRUNK/sapi/fpm/fpm/ |
| H A D | fpm_str.h | 8 static inline char *str_purify_filename(char *dst, char *src, size_t size) /* {{{ */ argument 15 for (; d < end && *src; ++d, ++src) { 16 if (* (unsigned char *) src < ' ' || * (unsigned char *) src > '\x7f') { 19 *d = *src;
|
| /PHP_TRUNK/ext/gd/libgd/ |
| H A D | gd_filter.c | 13 #define GET_PIXEL_FUNCTION(src)(src->trueColor?gdImageGetTrueColorPixel:gdImageGetPixel) 15 /* invert src image */ 16 int gdImageNegate(gdImagePtr src) argument 24 if (src==NULL) { 28 f = GET_PIXEL_FUNCTION(src); 30 for (y=0; y<src->sy; ++y) { 31 for (x=0; x<src->sx; ++x) { 32 pxl = f (src, x, y); 33 r = gdImageRed(src, px 49 gdImageGrayScale(gdImagePtr src) argument 82 gdImageBrightness(gdImagePtr src, int brightness) argument 127 gdImageContrast(gdImagePtr src, double contrast) argument 187 gdImageColor(gdImagePtr src, const int red, const int green, const int blue, const int alpha) argument 230 gdImageConvolution(gdImagePtr src, float filter[3][3], float filter_div, float offset) argument 291 gdImageSelectiveBlur( gdImagePtr src) argument 410 gdImageEdgeDetectQuick(gdImagePtr src) argument [all...] |
| H A D | gd_io_ss.c | 35 gdSourcePtr src; member in struct:ssIOCtx 41 gdIOCtx *gdNewSSCtx (gdSourcePtr src, gdSinkPtr snk); 50 gdIOCtx * gdNewSSCtx (gdSourcePtr src, gdSinkPtr snk) argument 56 ctx->src = src; 86 res = ((lctx->src->source) (lctx->src->context, buf, size));
|
| H A D | gd_matrix.c | 27 int gdAffineApplyToPointF (gdPointFPtr dst, const gdPointFPtr src, argument 30 double x = src->x; 31 double y = src->y; 32 x = src->x; 33 y = src->y; 44 * inverted matrix will restore the original values. Multiplying <src> 60 int gdAffineInvert (double dst[6], const double src[6]) argument 62 double r_det = (src[0] * src[3] - src[ 95 gdAffineFlip(double dst[6], const double src[6], const int flip_h, const int flip_v) argument 291 gdAffineExpansion(const double src[6]) 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 29 if (src->trueColor) { 34 clrBackR = gdImageRed(src, clrBack); 35 clrBackG = gdImageGreen(src, clrBack); 36 clrBackB = gdImageBlue(src, clrBack); 37 clrBackA = gdImageAlpha(src, clrBack); 50 for (i = 0; i < src->sx; i++) { 51 pxlSrc = f (src,i,uRow); 53 r = (int)(gdImageRed(src,pxlSrc) * dWeight); 54 g = (int)(gdImageGreen(src,pxlSr 117 gdImageSkewY(gdImagePtr dst, gdImagePtr src, int uCol, int iOffset, double dWeight, int clrBack, int ignoretransparent) argument 205 gdImageRotate90(gdImagePtr src, int ignoretransparent) argument 252 gdImageRotate180(gdImagePtr src, int ignoretransparent) argument 300 gdImageRotate270(gdImagePtr src, int ignoretransparent) argument 347 gdImageRotate45(gdImagePtr src, double dAngle, int clrBack, int ignoretransparent) argument 505 gdImageRotate(gdImagePtr src, double dAngle, int clrBack, int ignoretransparent) argument [all...] |
| /PHP_TRUNK/ext/intl/ |
| H A D | intl_convert.c | 48 const char* src, int src_len, 60 u_strFromUTF8( *target, *target_len, &dst_len, src, src_len, status ); 82 u_strFromUTF8( dst_buf, dst_len+1, NULL, src, src_len, status ); 112 const UChar* src, int src_len, 120 u_strToUTF8( NULL, 0, &dst_len, src, src_len, status ); 134 u_strToUTF8( dst_buf, dst_len, NULL, src, src_len, status ); 46 intl_convert_utf8_to_utf16( UChar** target, int* target_len, const char* src, int src_len, UErrorCode* status ) argument 110 intl_convert_utf16_to_utf8( char** target, int* target_len, const UChar* src, int src_len, UErrorCode* status ) argument
|
| H A D | intl_convert.h | 25 const char* src, int src_len, 30 const UChar* src, int src_len,
|
| /PHP_TRUNK/ext/standard/ |
| H A D | php_smart_str.h | 76 #define smart_str_appends_ex(dest, src, what) \ 77 smart_str_appendl_ex((dest), (src), strlen(src), (what)) 78 #define smart_str_appends(dest, src) \ 79 smart_str_appendl((dest), (src), strlen(src)) 85 #define smart_str_appendl(dest, src, len) \ 86 smart_str_appendl_ex((dest), (src), (len), 0) 87 #define smart_str_append(dest, src) \ 88 smart_str_append_ex((dest), (src), [all...] |
| H A D | php_uuencode.h | 27 PHPAPI int php_uudecode(char *src, int src_len, char **dest); 28 PHPAPI int php_uuencode(char *src, int src_len, char **dest);
|
| H A D | uuencode.c | 68 PHPAPI int php_uuencode(char *src, int src_len, char **dest) /* {{{ */ argument 75 s = src; 76 e = src + src_len; 127 PHPAPI int php_uudecode(char *src, int src_len, char **dest) /* {{{ */ argument 133 s = src; 134 e = src + src_len; 192 char *src, *dst; local 195 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &src, &src_len) == FAILURE || src_len < 1) { 199 dst_len = php_uuencode(src, src_len, &dst); 209 char *src, *ds local [all...] |
| /PHP_TRUNK/main/ |
| H A D | strlcat.c | 62 * Appends src to string dst of size siz (unlike strncat, siz is the 65 * Returns strlen(src); if retval >= siz, truncation occurred. 67 PHPAPI size_t php_strlcat(dst, src, siz) 69 const char *src; 73 register const char *s = src; 94 return(dlen + (s - src)); /* count does not include NUL */
|
| H A D | strlcpy.c | 62 * Copy src to string dst of size siz. At most siz-1 characters 64 * Returns strlen(src); if retval >= siz, truncation occurred. 66 PHPAPI size_t php_strlcpy(dst, src, siz) 68 const char *src; 72 register const char *s = src; 83 /* Not enough room in dst, add NUL and traverse rest of src */ 91 return(s - src - 1); /* count does not include NUL */
|