col 198 ext/gd/gd.c ZEND_ARG_INFO(0, col) col 483 ext/gd/gd.c ZEND_ARG_INFO(0, col) col 492 ext/gd/gd.c ZEND_ARG_INFO(0, col) col 501 ext/gd/gd.c ZEND_ARG_INFO(0, col) col 510 ext/gd/gd.c ZEND_ARG_INFO(0, col) col 519 ext/gd/gd.c ZEND_ARG_INFO(0, col) col 530 ext/gd/gd.c ZEND_ARG_INFO(0, col) col 547 ext/gd/gd.c ZEND_ARG_INFO(0, col) col 554 ext/gd/gd.c ZEND_ARG_INFO(0, col) col 563 ext/gd/gd.c ZEND_ARG_INFO(0, col) col 575 ext/gd/gd.c ZEND_ARG_INFO(0, col) col 582 ext/gd/gd.c ZEND_ARG_INFO(0, col) col 599 ext/gd/gd.c ZEND_ARG_INFO(0, col) col 608 ext/gd/gd.c ZEND_ARG_INFO(0, col) col 617 ext/gd/gd.c ZEND_ARG_INFO(0, col) col 626 ext/gd/gd.c ZEND_ARG_INFO(0, col) col 701 ext/gd/gd.c ZEND_ARG_INFO(0, col) col 721 ext/gd/gd.c ZEND_ARG_INFO(0, col) col 1642 ext/gd/gd.c zend_long cx, cy, w, h, ST, E, col, style; col 1646 ext/gd/gd.c if (zend_parse_parameters(ZEND_NUM_ARGS(), "rllllllll", &IM, &cx, &cy, &w, &h, &ST, &E, &col, &style) == FAILURE) { col 1664 ext/gd/gd.c gdImageFilledArc(im, cx, cy, w, h, st, e, col, style); col 2872 ext/gd/gd.c int col; col 2888 ext/gd/gd.c col = index; col 2890 ext/gd/gd.c if (col >= 0 && col < gdImageColorsTotal(im)) { col 2891 ext/gd/gd.c gdImageColorDeallocate(im, col); col 2894 ext/gd/gd.c php_error_docref(NULL, E_WARNING, "Color index %d out of range", col); col 2946 ext/gd/gd.c int col; col 2957 ext/gd/gd.c col = color; col 2959 ext/gd/gd.c if (col >= 0 && col < gdImageColorsTotal(im)) { col 2960 ext/gd/gd.c im->red[col] = red; col 2961 ext/gd/gd.c im->green[col] = green; col 2962 ext/gd/gd.c im->blue[col] = blue; col 2963 ext/gd/gd.c im->alpha[col] = alpha; col 2976 ext/gd/gd.c int col; col 2987 ext/gd/gd.c col = index; col 2989 ext/gd/gd.c if ((col >= 0 && gdImageTrueColor(im)) || (!gdImageTrueColor(im) && col >= 0 && col < gdImageColorsTotal(im))) { col 2992 ext/gd/gd.c add_assoc_long(return_value,"red", gdImageRed(im,col)); col 2993 ext/gd/gd.c add_assoc_long(return_value,"green", gdImageGreen(im,col)); col 2994 ext/gd/gd.c add_assoc_long(return_value,"blue", gdImageBlue(im,col)); col 2995 ext/gd/gd.c add_assoc_long(return_value,"alpha", gdImageAlpha(im,col)); col 2997 ext/gd/gd.c php_error_docref(NULL, E_WARNING, "Color index %d out of range", col); col 3054 ext/gd/gd.c zend_long x, y, col; col 3057 ext/gd/gd.c if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlll", &IM, &x, &y, &col) == FAILURE) { col 3065 ext/gd/gd.c gdImageSetPixel(im, x, y, col); col 3075 ext/gd/gd.c zend_long x1, y1, x2, y2, col; col 3078 ext/gd/gd.c if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) { col 3088 ext/gd/gd.c gdImageAALine(im, x1, y1, x2, y2, col); col 3092 ext/gd/gd.c gdImageLine(im, x1, y1, x2, y2, col); col 3103 ext/gd/gd.c zend_long x1, y1, x2, y2, col; col 3106 ext/gd/gd.c if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) { col 3114 ext/gd/gd.c gdImageDashedLine(im, x1, y1, x2, y2, col); col 3124 ext/gd/gd.c zend_long x1, y1, x2, y2, col; col 3127 ext/gd/gd.c if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) { col 3135 ext/gd/gd.c gdImageRectangle(im, x1, y1, x2, y2, col); col 3145 ext/gd/gd.c zend_long x1, y1, x2, y2, col; col 3148 ext/gd/gd.c if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllll", &IM, &x1, &y1, &x2, &y2, &col) == FAILURE) { col 3155 ext/gd/gd.c gdImageFilledRectangle(im, x1, y1, x2, y2, col); col 3165 ext/gd/gd.c zend_long cx, cy, w, h, ST, E, col; col 3169 ext/gd/gd.c if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlllllll", &IM, &cx, &cy, &w, &h, &ST, &E, &col) == FAILURE) { col 3187 ext/gd/gd.c gdImageArc(im, cx, cy, w, h, st, e, col); col 3218 ext/gd/gd.c zend_long x, y, border, col; col 3221 ext/gd/gd.c if (zend_parse_parameters(ZEND_NUM_ARGS(), "rllll", &IM, &x, &y, &border, &col) == FAILURE) { col 3229 ext/gd/gd.c gdImageFillToBorder(im, x, y, border, col); col 3239 ext/gd/gd.c zend_long x, y, col; col 3242 ext/gd/gd.c if (zend_parse_parameters(ZEND_NUM_ARGS(), "rlll", &IM, &x, &y, &col) == FAILURE) { col 3250 ext/gd/gd.c gdImageFill(im, x, y, col); col 3335 ext/gd/gd.c int npoints, col, nelem, i; col 3346 ext/gd/gd.c col = COL; col 3374 ext/gd/gd.c gdImageFilledPolygon(im, points, npoints, col); col 3376 ext/gd/gd.c gdImagePolygon(im, points, npoints, col); col 3514 ext/gd/gd.c int ch = 0, col, x, y, size, i, l = 0; col 3526 ext/gd/gd.c col = COL; col 3543 ext/gd/gd.c gdImageChar(im, font, x, y, ch, col); col 3546 ext/gd/gd.c php_gdimagecharup(im, font, x, y, ch, col); col 3550 ext/gd/gd.c gdImageChar(im, font, x, y, (int) ((unsigned char) str[i]), col); col 3557 ext/gd/gd.c gdImageCharUp(im, font, x, y, (int) str[i], col); col 3828 ext/gd/gd.c zend_long col = -1, x = -1, y = -1; col 3846 ext/gd/gd.c } else if (zend_parse_parameters(argc, "rddlllss|a", &IM, &ptsize, &angle, &x, &y, &col, &fontname, &fontname_len, &str, &str_len, &EXT) == FAILURE) { col 3887 ext/gd/gd.c error = gdImageStringFTEx(im, brect, col, fontname, ptsize, angle, x, y, str, &strex); col 3890 ext/gd/gd.c error = gdImageStringFT(im, brect, col, fontname, ptsize, angle, x, y, str); col 1052 ext/gd/libgd/gd.c static void gdImageHLine(gdImagePtr im, int y, int x1, int x2, int col) col 1056 ext/gd/libgd/gd.c gdImageFilledRectangle(im, x1, y - thickhalf, x2, y + im->thick - thickhalf - 1, col); col 1065 ext/gd/libgd/gd.c gdImageSetPixel(im, x1, y, col); col 1071 ext/gd/libgd/gd.c static void gdImageVLine(gdImagePtr im, int x, int y1, int y2, int col) col 1075 ext/gd/libgd/gd.c gdImageFilledRectangle(im, x - thickhalf, y1, x + im->thick - thickhalf - 1, y2, col); col 1084 ext/gd/libgd/gd.c gdImageSetPixel(im, x, y1, col); col 1287 ext/gd/libgd/gd.c void gdImageAALine (gdImagePtr im, int x1, int y1, int x2, int y2, int col) col 1364 ext/gd/libgd/gd.c gdImageSetAAPixelColor(im, x >> 16, y >> 16, col, (y >> 8) & 0xFF); col 1366 ext/gd/libgd/gd.c gdImageSetAAPixelColor(im, x >> 16, (y >> 16) + 1,col, (~y >> 8) & 0xFF); col 1386 ext/gd/libgd/gd.c gdImageSetAAPixelColor(im, x >> 16, y >> 16, col, (x >> 8) & 0xFF); col 1388 ext/gd/libgd/gd.c gdImageSetAAPixelColor(im, (x >> 16) + 1, (y >> 16),col, (~x >> 8) & 0xFF); col 356 ext/gd/libgd/gd_topal.c JDIMENSION col; col 367 ext/gd/libgd/gd_topal.c for (col = width; col > 0; col--) col 1304 ext/gd/libgd/gd_topal.c JDIMENSION col; col 1312 ext/gd/libgd/gd_topal.c for (col = width; col > 0; col--) col 1384 ext/gd/libgd/gd_topal.c JDIMENSION col; col 1436 ext/gd/libgd/gd_topal.c for (col = width; col > 0; col--) col 133 ext/gd/libgd/gd_wbmp.c int col, row, pos; col 152 ext/gd/libgd/gd_wbmp.c for (col = 0; col < wbmp->width; col++) { col 154 ext/gd/libgd/gd_wbmp.c gdImageSetPixel(im, col, row, white); col 156 ext/gd/libgd/gd_wbmp.c gdImageSetPixel(im, col, row, black); col 629 ext/gd/libgd/gdft.c int x, y, row, col, pc, pcr; col 648 ext/gd/libgd/gdft.c for (col = 0; col < bitmap.width; col++, pc++) { col 657 ext/gd/libgd/gdft.c level = ((bitmap.buffer[(col>>3)+pcr]) & (1<<(~col&0x07))) ? gdAlphaTransparent : gdAlphaOpaque; col 670 ext/gd/libgd/gdft.c x = pen_x + col; col 708 ext/gd/libgd/gdft.c for (col = 0; col < bitmap.width; col++, pc++) { col 719 ext/gd/libgd/gdft.c tc_key.pixel = ((bitmap.buffer[(col>>3)+pcr]) & (1<<(~col&0x07))) ? NUMCOLORS : 0; col 724 ext/gd/libgd/gdft.c x = pen_x + col; col 153 ext/gd/libgd/wbmp.c int row, col, byte, pel, pos; col 208 ext/gd/libgd/wbmp.c for (col = 0; col < wbmp->width;) col 214 ext/gd/libgd/wbmp.c if (col++ < wbmp->width) col 250 ext/gd/libgd/wbmp.c int row, col; col 269 ext/gd/libgd/wbmp.c for (col = 0; col < wbmp->width; col++) col 271 ext/gd/libgd/wbmp.c octet |= ((wbmp->bitmap[row * wbmp->width + col] == 1) ? WBMP_WHITE : WBMP_BLACK) << --bitpos; col 309 ext/gd/libgd/wbmp.c int row, col; col 312 ext/gd/libgd/wbmp.c for (col = 0; col < wbmp->width; col++) col 314 ext/gd/libgd/wbmp.c if (wbmp->bitmap[wbmp->width * row + col] == WBMP_BLACK) col 222 ext/mysqlnd/mysqlnd_result.c int64_t col; col 225 ext/mysqlnd/mysqlnd_result.c for (col = field_count - 1; col >= 0; --col) { col 226 ext/mysqlnd/mysqlnd_result.c zval_ptr_dtor(&(current_row[col])); col 74 ext/odbc/birdstep.c ZEND_ARG_INFO(0, col) col 99 ext/odbc/birdstep.c ZEND_ARG_INFO(0, col) col 462 ext/odbc/birdstep.c zval **col; col 472 ext/odbc/birdstep.c if (zend_parse_parameters(ZEND_NUM_ARGS(), "lZ", &ind, &col) == FAILURE) { col 478 ext/odbc/birdstep.c if ( Z_TYPE_PP(col) == IS_STRING ) { col 479 ext/odbc/birdstep.c field = Z_STRVAL_PP(col); col 481 ext/odbc/birdstep.c convert_to_long_ex(col); col 482 ext/odbc/birdstep.c indx = Z_LVAL_PP(col); col 667 ext/odbc/birdstep.c zend_long ind, col; col 671 ext/odbc/birdstep.c if (zend_parse_parameters(ZEND_NUM_ARGS(), "ll", &ind, &col) == FAILURE) { col 677 ext/odbc/birdstep.c indx = col; col 3573 ext/odbc/php_odbc.c char *cat = NULL, *schema = NULL, *proc = NULL, *col = NULL; col 3582 ext/odbc/php_odbc.c &proc, &proc_len, &col, &col_len) == FAILURE) { col 3609 ext/odbc/php_odbc.c col, SAFE_SQL_NTS(col) ); col 201 ext/pdo/pdo_stmt.c int col; col 205 ext/pdo/pdo_stmt.c for (col = 0; col < stmt->column_count; col++) { col 206 ext/pdo/pdo_stmt.c if (!stmt->methods->describer(stmt, col)) { col 212 ext/pdo/pdo_stmt.c char *s = ZSTR_VAL(stmt->columns[col].name); col 237 ext/pdo/pdo_stmt.c if (SUCCESS == zend_hash_find(stmt->bound_params, stmt->columns[col].name, col 238 ext/pdo/pdo_stmt.c stmt->columns[col].namelen, (void**)¶m)) { col 239 ext/pdo/pdo_stmt.c param->paramno = col; col 247 ext/pdo/pdo_stmt.c stmt->columns[col].name)) != NULL) { col 248 ext/pdo/pdo_stmt.c param->paramno = col; col 546 ext/pdo/pdo_stmt.c struct pdo_column_data *col; col 552 ext/pdo/pdo_stmt.c col = &stmt->columns[colno]; col 553 ext/pdo/pdo_stmt.c type = PDO_PARAM_TYPE(col->param_type); col 1798 ext/pdo/pdo_stmt.c struct pdo_column_data *col; col 1821 ext/pdo/pdo_stmt.c col = &stmt->columns[colno]; col 1822 ext/pdo/pdo_stmt.c add_assoc_str(return_value, "name", zend_string_copy(col->name)); col 1823 ext/pdo/pdo_stmt.c add_assoc_long(return_value, "len", col->maxlen); /* FIXME: unsigned ? */ col 1824 ext/pdo/pdo_stmt.c add_assoc_long(return_value, "precision", col->precision); col 1825 ext/pdo/pdo_stmt.c if (col->param_type != PDO_PARAM_ZVAL) { col 1827 ext/pdo/pdo_stmt.c add_assoc_long(return_value, "pdo_type", col->param_type); col 194 ext/pdo_dblib/dblib_stmt.c struct pdo_column_data *col; col 201 ext/pdo_dblib/dblib_stmt.c col = &stmt->columns[colno]; col 205 ext/pdo_dblib/dblib_stmt.c col->name = zend_string_init(fname, strlen(fname), 0); col 211 ext/pdo_dblib/dblib_stmt.c col->name = zend_string_init(buf, len, 0); col 214 ext/pdo_dblib/dblib_stmt.c col->maxlen = dbcollen(H->link, colno+1); col 215 ext/pdo_dblib/dblib_stmt.c col->param_type = PDO_PARAM_STR; col 186 ext/pdo_firebird/firebird_statement.c struct pdo_column_data *col = &stmt->columns[colno]; col 198 ext/pdo_firebird/firebird_statement.c col->precision = -var->sqlscale; col 199 ext/pdo_firebird/firebird_statement.c col->maxlen = var->sqllen; col 200 ext/pdo_firebird/firebird_statement.c col->name = zend_string_alloc(colname_len, 0); col 201 ext/pdo_firebird/firebird_statement.c cp = ZSTR_VAL(col->name); col 209 ext/pdo_firebird/firebird_statement.c col->param_type = PDO_PARAM_STR; col 505 ext/pdo_oci/oci_statement.c pdo_oci_column *col = (pdo_oci_column*)octxp; col 507 ext/pdo_oci/oci_statement.c switch (col->dtype) { col 511 ext/pdo_oci/oci_statement.c *bufpp = col->data; col 512 ext/pdo_oci/oci_statement.c *alenpp = &col->datalen; col 513 ext/pdo_oci/oci_statement.c *indpp = (dvoid *)&col->indicator; col 532 ext/pdo_oci/oci_statement.c struct pdo_column_data *col = &stmt->columns[colno]; col 558 ext/pdo_oci/oci_statement.c col->precision = scale; col 559 ext/pdo_oci/oci_statement.c col->maxlen = data_size; col 560 ext/pdo_oci/oci_statement.c col->name = zend_string_init((char *)colname, namelen, 0); col 575 ext/pdo_oci/oci_statement.c col->param_type = PDO_PARAM_STR; col 580 ext/pdo_oci/oci_statement.c col->param_type = PDO_PARAM_LOB; col 603 ext/pdo_oci/oci_statement.c S->cols[colno].datalen = (ub4) col->maxlen; col 612 ext/pdo_oci/oci_statement.c col->param_type = PDO_PARAM_STR; col 567 ext/pdo_odbc/odbc_stmt.c struct pdo_column_data *col = &stmt->columns[colno]; col 596 ext/pdo_odbc/odbc_stmt.c col->maxlen = S->cols[colno].datalen = colsize; col 597 ext/pdo_odbc/odbc_stmt.c col->name = zend_string_init(S->cols[colno].colname, colnamelen, 0); col 601 ext/pdo_odbc/odbc_stmt.c col->param_type = PDO_PARAM_STR; col 736 ext/xml/compat.c return parser->parser->input->col;