| /PHP_5_5/ext/gd/libgd/ |
| H A D | gd_arc_f_buggy.c | 13 static gdPoint gdArcClosest (int width, int height, int angle); 16 gdImageFilledEllipse (gdImagePtr im, int cx, int cy, int width, int height, int color) 18 gdImageFilledArc (im, cx, cy, width, height, 0, 360, color, gdChord); 22 gdImageFilledArc (gdImagePtr im, int cx, int cy, int width, int height, int s, int e, int color, int style) 66 width = (width & 1) ? (width + 1) : (width); 69 a = width / 2; 110 gdImageFilledArc (im, cx, cy, width, heigh [all...] |
| H A D | gd_gif_in.c | 186 int width, height; local 218 width = LM_to_uint(buf[4], buf[5]); 221 if (left + width > screen_width || top + height > screen_height) { 228 if (!(im = gdImageCreate(width, height))) { 237 ReadImage(im, fd, width, height, localColorMap, 244 ReadImage(im, fd, width, height,
|
| H A D | gd_topal.c | 358 JDIMENSION width = cinfo->output_width; local 360 int width = oim->sx; local 367 for (col = width; col > 0; col--) 1290 int width = oim->sx; local 1299 JDIMENSION width = cinfo->output_width; 1312 for (col = width; col > 0; col--) 1387 JDIMENSION width = cinfo->output_width; local 1395 int width = oim->sx; local 1411 inptr += (width - 1) * 3; /* so point to rightmost pixel */ 1412 outptr += width [all...] |
| H A D | gd_wbmp.c | 139 if (!(im = gdImageCreate (wbmp->width, wbmp->height))) { 152 for (col = 0; col < wbmp->width; col++) {
|
| H A D | gd_webp.c | 39 int width, height, ret; local 45 ret = WebPDecode(data, size, &Y, &U, &V, &width, &height); 53 im = gdImageCreateTrueColor(width, height); 63 int width, height, ret; local 83 ret = WebPDecode(filedata, size, &Y, &U, &V, &width, &height); 92 im = gdImageCreateTrueColor(width, height); 157 int width = im->sx; local 170 yuv_width = (width + 1) >> 1; 172 yuv_nbytes = width * height + 2 * yuv_width * yuv_height; 180 U = Y + width * heigh [all...] |
| H A D | gdft.c | 613 for (col = 0; col < bitmap.width; col++, pc++) { 673 for (col = 0; col < bitmap.width; col++, pc++) { 1015 * use "JIS-8 half-width katakana" coding from 8-bit characters. Ref:
|
| H A D | gdxpm.c | 35 if (!(im = gdImageCreate(image.width, image.height))) { 122 for (j = 0; j < image.width; j++) {
|
| H A D | wbmp.c | 111 createwbmp (int width, int height, int color) argument 119 if (overflow2(sizeof (int), width)) { 123 if (overflow2(sizeof (int) * width, height)) { 128 if ((wbmp->bitmap = (int *) safe_emalloc(sizeof(int), width * height, 0)) == NULL) 134 wbmp->width = width; 137 for (i = 0; i < width * height; wbmp->bitmap[i++] = color); 170 wbmp->width = getmbi (getin, in); 171 if (wbmp->width == -1) 185 printf ("W: %d, H: %d\n", wbmp->width, wbm [all...] |
| H A D | wbmp.h | 30 int width; /* width of the image */ member in struct:Wbmp_ 46 Wbmp *createwbmp( int width, int height, int color );
|
| H A D | webpimg.c | 282 /* Generate RGBA row from an YUV row (with width upsampling of chrome data) 287 * 4. y_width: width of the Y image plane (aka image width) 320 * 5. width, height: the dimensions of the image whose data resides in Y, 330 int width, 333 int y_width = width; 349 width, 358 int width = im->sx; local 360 int y_width = width; 381 width, 326 YUV420toRGBA(uint8* Y, uint8* U, uint8* V, int words_per_line, int width, int height, uint32* pixdata) argument 480 RGBALinepairToYUV420(uint32* rgb_line1, uint32* rgb_line2, int width, uint8* Y_dst1, uint8* Y_dst2, uint8* u_dst, uint8* v_dst) argument 595 RGBAToYUV420(uint32* pixdata, int words_per_line, int width, int height, uint8* Y, uint8* U, uint8* V) argument 790 AdjustColorspace(uint8* Y, uint8* U, uint8* V, int width, int height) argument 818 AdjustColorspaceBack(uint8* Y, uint8* U, uint8* V, int width, int height) argument 849 WebPGetInfo(const uint8* data, int data_size, int *width, int *height) argument [all...] |
| H A D | webpimg.h | 65 * 6. p_width: this routine returns the width of the decoded image here 66 * 7. p_height: this routine returns the width of the decoded image here 81 * 4, 5. y_width, y_height: The width and height of the image whose data 83 * and V planes typically have 1/2 width and 85 * 6. y_stride: The width (in bytes) of one row of Y data. This may not 86 * match width if there is end of row padding (e.g., for 32 120 * 5. width, height: the dimensions of the image whose data resides in Y, 130 int width, 140 * 3, 4. image width and height respectively 146 int width, [all...] |
| H A D | xbm.c | 39 unsigned int width = 0, height = 0; local 63 if (!strcmp("width", type)) { 64 width = (unsigned int) value; 80 bytes = (width * height / 8) + 1; 99 if(!(im = gdImageCreate(width, height))) { 236 * tab-width: 4
|
| H A D | gd_crop.c | 48 dst = gdImageCreateTrueColor(crop->width, crop->height); 51 dst = gdImageCreate(crop->width, crop->height); 56 if (src->sx < (crop->x + crop->width -1)) { 57 crop->width = src->sx - crop->x + 1; 63 printf("rect->x: %i\nrect->y: %i\nrect->width: %i\nrect->height: %i\n", crop->x, crop->y, crop->width, crop->height); 73 memcpy(dst->tpixels[dst_y++], src->tpixels[y++] + crop->x, crop->width * 4); 78 for (x = crop->x; x < (crop->x + (crop->width - 1)); x++) { 105 const int width = gdImageSX(im); local 114 crop.width 218 const int width = gdImageSX(im); local [all...] |
| H A D | gd_png.c | 123 png_uint_32 width, height, rowbytes, w, h; local 193 png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL); 196 im = gdImageCreateTrueColor((int) width, (int) height); 198 im = gdImageCreate((int) width, (int) height); 362 for (w = 0; w < width; w++) { 375 for (w = 0; w < width; w++) { 394 for (w = 0; w < width; ++w) { 467 int width = im->sx; local 574 png_set_IHDR(png_ptr, info_ptr, width, height, 8, PNG_COLOR_TYPE_RGB_ALPHA, interlace_type, 577 png_set_IHDR(png_ptr, info_ptr, width, heigh [all...] |
| H A D | gd.h | 290 /* Character width and height */ 311 * width - Rectangle width 323 int width, height; member in struct:__anon4 429 /* Corners specified (not width and height). Upper left first, lower right 843 gdImagePtr gdImageScaleBicubicFixed(gdImagePtr src, const unsigned int width, const unsigned int height); 844 gdImagePtr gdImageScaleNearestNeighbour(gdImagePtr im, const unsigned int width, const unsigned int height); 890 #define GD_CMP_SIZE_X 8 /* Image width differs */
|
| H A D | gd_interpolation.c | 996 /* same width, just copy it */ 1103 gdImagePtr gdImageScaleNearestNeighbour(gdImagePtr im, const unsigned int width, const unsigned int height) argument 1105 const unsigned long new_width = MAX(1, width); 1390 gdImagePtr gdImageScaleBicubicFixed(gdImagePtr src, const unsigned int width, const unsigned int height) argument 1392 const long new_width = MAX(1, width); 2232 x1 = r->x + r->width - 1; 2236 r->width = CLAMP(x1, c1x, c2x) - r->x + 1; 2242 printf("%s (%i, %i) (%i, %i)\n", msg, r->x, r->y, r->width, r->height); 2274 area_full.width = gdImageSX(src); 2281 *dst = gdImageCreateTrueColor(bbox.width, bbo [all...] |
| /PHP_5_5/ext/mbstring/libmbfl/mbfl/ |
| H A D | mbfilter.c | 1820 int width; member in struct:collector_strimwidth_data 1840 if (pc->outwidth > pc->width) { 1865 int width) 1878 mbfl_memory_device_init(&pc.device, width, 0); 1905 pc.width = width - mkwidth; 1923 pc.width += mkwidth; 3109 * tab-width: 4 1860 mbfl_strimwidth( mbfl_string *string, mbfl_string *marker, mbfl_string *result, int from, int width) argument
|
| H A D | mbfilter.h | 225 mbfl_strimwidth(mbfl_string *string, mbfl_string *marker, mbfl_string *result, int from, int width);
|
| /PHP_5_5/ext/exif/ |
| H A D | exif.c | 118 ZEND_ARG_INFO(1, width) 1504 size_t width, height; member in struct:__anon73 1598 size_t width; member in struct:__anon77 2266 result->width = php_jpg_get16(Data+5); 2919 ImageInfo->Thumbnail.width = exif_convert_any_to_int(value_ptr, format, ImageInfo->motorola_intel TSRMLS_CC); 3221 /* Compute the CCD width, in milimeters. */ 3412 ImageInfo->Width = sof_info.width; 3448 if (!ImageInfo->Thumbnail.width && !ImageInfo->Thumbnail.height) { 3496 ImageInfo->Thumbnail.width = sof_info.width; [all...] |
| /PHP_5_5/ext/mbstring/ |
| H A D | mbstring.c | 347 ZEND_ARG_INFO(0, width) 2855 Gets terminal width of a string */ 2889 /* {{{ proto string mb_strimwidth(string str, int start, int width [, string trimmarker [, string encoding]]) 2890 Trim the string in terminal width */ 2894 long from, width; local 2898 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sll|ss", &str, &str_len, &from, &width, &trimmarker, &trimmarker_len, &encoding, &encoding_len) == FAILURE) { 2927 if (width < 0) { 2937 ret = mbfl_strimwidth(&string, &marker, &result, from, width); 3384 Conversion between full-width character and half-width characte [all...] |
| /PHP_5_5/ext/standard/ |
| H A D | formatted_print.c | 90 zend_error_noreturn(E_ERROR, "Field width %d is too long", m_width); 98 zend_error_noreturn(E_ERROR, "Field width %d is too long", req_size); 130 int width, char padding, int alignment, 138 *buffer, pos, size, number, width, padding, alignment)); 165 php_sprintf_appendstring(buffer, pos, size, &numbuf[i], width, 0, 175 int width, char padding, int alignment) 182 *buffer, pos, size, number, width, padding, alignment)); 198 php_sprintf_appendstring(buffer, pos, size, &numbuf[i], width, 0, 207 int width, char padding, 221 *buffer, pos, size, number, width, paddin 129 php_sprintf_appendint(char **buffer, int *pos, int *size, long number, int width, char padding, int alignment, int always_sign) argument 173 php_sprintf_appenduint(char **buffer, int *pos, int *size, unsigned long number, int width, char padding, int alignment) argument 205 php_sprintf_appenddouble(char **buffer, int *pos, int *size, double number, int width, char padding, int alignment, int precision, int adjust, char fmt, int always_sign TSRMLS_DC) argument 296 php_sprintf_append2n(char **buffer, int *pos, int *size, long number, int width, char padding, int alignment, int n, char *chartable, int expprec) argument 376 int alignment, currarg, adjusting, argnum, width, precision; local [all...] |
| H A D | scanf.c | 89 #define SCAN_WIDTH 0x8 /* A width value was supplied. */ 403 * Parse any width specifier. 443 /* a character width specification, to be more consistent with */ 448 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Field width may not be specified in %c conversion"); 592 size_t width; local 721 * Parse any width specifier. 724 width = strtoul(format-1, &format, 10); 727 width = 0; 805 if (0 == width) { 806 width [all...] |
| H A D | image.c | 62 unsigned int width; member in struct:gfxinfo 112 result->width = (unsigned int)dim[0] | (((unsigned int)dim[1])<<8); 136 result->width = (((unsigned int)dim[4]) << 24) + (((unsigned int)dim[5]) << 16) + (((unsigned int)dim[6]) << 8) + ((unsigned int)dim[7]); 159 result->width = (((unsigned int)dim[ 5]) << 8) + ((unsigned int) dim[ 4]); 164 result->width = (((unsigned int)dim[ 7]) << 24) + (((unsigned int)dim[ 6]) << 16) + (((unsigned int)dim[ 5]) << 8) + ((unsigned int) dim[ 4]); 250 result->width = (php_swf_get_bits (b, 5 + bits, bits) - 280 result->width = (php_swf_get_bits (a, 5 + bits, bits) - 312 result->width = (((unsigned int)dim[0]) << 24) + (((unsigned int)dim[1]) << 16) + (((unsigned int)dim[2]) << 8) + ((unsigned int)dim[3]); 499 result->width = php_read2(stream TSRMLS_CC); 627 result->width 803 size_t ifd_size, dir_size, entry_value, width=0, height=0, ifd_addr; local 885 short width, height, bits; local 942 int i, width = 0, height = 0; local 1016 unsigned int width = 0, height = 0; local [all...] |
| /PHP_5_5/main/ |
| H A D | snprintf.c | 564 #define PAD( width, len, ch ) do \ 567 width-- ; \ 569 while ( width > len ) 642 * Try to avoid checking for flags, width or precision 664 * Check if a width was specified 1143 * unknown <char> could be preceded by width etc. 1311 * tab-width: 4
|
| /PHP_5_5/ext/gd/ |
| H A D | gd.c | 347 ZEND_ARG_INFO(0, width) 1435 * byte 8-11: (int) pixel width of each character 1439 * (nchars*width*height) bytes. 2344 long srcx, srcy, width, height; local 2351 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sllll", &file, &file_len, &srcx, &srcy, &width, &height) == FAILURE) { 2354 if (width < 1 || height < 1) { 2355 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Zero width or height not allowed"); 2415 im = (*ioctx_func_p)(io_ctx, srcx, srcy, width, height); 2432 im = (*func_p)(fp, srcx, srcy, width, height); 2550 /* {{{ proto resource imagecreatefromgd2part(string filename, int srcX, int srcY, int width, in 4115 long _fg, _bg, x, y, size, space = 0, aa_steps = 4, width = 0; local 4433 long height, width, threshold; local [all...] |