Home
last modified time | relevance | path

Searched refs:col (Results 26 – 37 of 37) sorted by relevance

12

/PHP-5.5/ext/pdo_firebird/
H A Dfirebird_statement.c186 struct pdo_column_data *col = &stmt->columns[colno]; in firebird_stmt_describe() local
198 col->precision = -var->sqlscale; in firebird_stmt_describe()
199 col->maxlen = var->sqllen; in firebird_stmt_describe()
200 col->namelen = colname_len; in firebird_stmt_describe()
201 col->name = cp = emalloc(colname_len + 1); in firebird_stmt_describe()
209 col->param_type = PDO_PARAM_STR; in firebird_stmt_describe()
/PHP-5.5/ext/pdo/
H A Dpdo_stmt.c207 int col; in pdo_stmt_describe_columns() local
211 for (col = 0; col < stmt->column_count; col++) { in pdo_stmt_describe_columns()
218 char *s = stmt->columns[col].name; in pdo_stmt_describe_columns()
245 param->paramno = col; in pdo_stmt_describe_columns()
254 param->paramno = col; in pdo_stmt_describe_columns()
548 struct pdo_column_data *col; in fetch_value() local
554 col = &stmt->columns[colno]; in fetch_value()
555 type = PDO_PARAM_TYPE(col->param_type); in fetch_value()
1830 struct pdo_column_data *col; in PHP_METHOD() local
1853 col = &stmt->columns[colno]; in PHP_METHOD()
[all …]
/PHP-5.5/ext/gd/libgd/
H A Dgd_topal.c356 JDIMENSION col; local
367 for (col = width; col > 0; col--)
1304 JDIMENSION col; local
1312 for (col = width; col > 0; col--)
1384 JDIMENSION col; local
1436 for (col = width; col > 0; col--)
H A Dgd.c1061 static void gdImageHLine(gdImagePtr im, int y, int x1, int x2, int col) in gdImageHLine() argument
1065 gdImageFilledRectangle(im, x1, y - thickhalf, x2, y + im->thick - thickhalf - 1, col); in gdImageHLine()
1074 gdImageSetPixel(im, x1, y, col); in gdImageHLine()
1080 static void gdImageVLine(gdImagePtr im, int x, int y1, int y2, int col) in gdImageVLine() argument
1084 gdImageFilledRectangle(im, x - thickhalf, y1, x + im->thick - thickhalf - 1, y2, col); in gdImageVLine()
1093 gdImageSetPixel(im, x, y1, col); in gdImageVLine()
1296 void gdImageAALine (gdImagePtr im, int x1, int y1, int x2, int y2, int col) in gdImageAALine() argument
1373 gdImageSetAAPixelColor(im, x >> 16, y >> 16, col, (y >> 8) & 0xFF); in gdImageAALine()
1375 gdImageSetAAPixelColor(im, x >> 16, (y >> 16) + 1,col, (~y >> 8) & 0xFF); in gdImageAALine()
1395 gdImageSetAAPixelColor(im, x >> 16, y >> 16, col, (x >> 8) & 0xFF); in gdImageAALine()
[all …]
/PHP-5.5/ext/standard/tests/array/
H A Darray_intersect_assoc_variation7.phpt55 /*7*/ array(111 => "\tHello", "red" => "col\tor", 2 => "\v\fworld", 3.3 => "pen\n"),
56 array(111 => '\tHello', "red" => 'col\tor', 2 => '\v\fworld', 3.3 => 'pen\n'),
H A Darray_intersect_assoc_variation8.phpt55 /*7*/ array(111 => "\tHello", "red" => "col\tor", 2 => "\v\fworld", 3.3 => "pen\n"),
56 array(111 => '\tHello', "red" => 'col\tor', 2 => '\v\fworld', 3.3 => 'pen\n'),
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_stmt_bind_limits.phpt23 $create .= "col" . $i . " INT, ";
24 $columns .= "col" . $i . ", ";
/PHP-5.5/ext/pdo_odbc/
H A Dodbc_stmt.c551 struct pdo_column_data *col = &stmt->columns[colno]; in odbc_stmt_describe() local
580 col->maxlen = S->cols[colno].datalen = colsize; in odbc_stmt_describe()
581 col->namelen = colnamelen; in odbc_stmt_describe()
582 col->name = estrdup(S->cols[colno].colname); in odbc_stmt_describe()
586 col->param_type = PDO_PARAM_STR; in odbc_stmt_describe()
/PHP-5.5/ext/ereg/regex/
H A Dregcomp.c1282 register uch *col; local
1291 for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize)
1292 if (col[uc] != 0)
1307 register uch *col; local
1313 for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize)
1314 if (col[uc1] != col[uc2])
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_result.c196 int64_t col; in MYSQLND_METHOD() local
199 for (col = field_count - 1; col >= 0; --col) { in MYSQLND_METHOD()
200 if (current_row[col]) { in MYSQLND_METHOD()
202 mysqlnd_rset_zval_ptr_dtor(&(current_row[col]), result->type, &copy_ctor_called TSRMLS_CC); in MYSQLND_METHOD()
/PHP-5.5/ext/xml/
H A Dcompat.c745 return parser->parser->input->col; in XML_GetCurrentColumnNumber()
/PHP-5.5/ext/odbc/
H A Dphp_odbc.c3514 char *cat = NULL, *schema = NULL, *proc = NULL, *col = NULL; in PHP_FUNCTION() local
3523 &proc, &proc_len, &col, &col_len) == FAILURE) { in PHP_FUNCTION()
3548 col, SAFE_SQL_NTS(col) ); in PHP_FUNCTION()

Completed in 48 milliseconds

12