Home
last modified time | relevance | path

Searched refs:cols (Results 1 – 19 of 19) sorted by relevance

/PHP-5.3/ext/gd/tests/
H A Dgif.phpt53 echo "<4 cols: ok\n";
64 echo "<8 cols: ok\n";
76 echo "<16 cols: ok\n";
139 <4 cols: ok
140 <8 cols: ok
141 <16 cols: ok
142 <32 cols: ok
143 <64 cols: ok
144 <128 cols: ok
145 <256 cols: ok
[all …]
/PHP-5.3/ext/pdo_dblib/
H A Ddblib_stmt.c61 if (S->cols) { in pdo_dblib_stmt_dtor()
62 efree(S->cols); in pdo_dblib_stmt_dtor()
105 if (!S->cols) {
121 if (!strlen(S->cols[i].name)) {
127 S->cols[i].name = "computed";
133 tmp = estrdup(S->cols[i].source ? S->cols[i].source : "");
134 S->cols[i].source = tmp;
137 S->cols[i].maxlen = dbcollen(H->link, i+1);
158 switch (S->cols[i].coltype) {
261 col->maxlen = S->cols[colno].maxlen;
[all …]
H A Dphp_pdo_dblib_int.h132 pdo_dblib_col *cols; member
/PHP-5.3/ext/pdo_pgsql/
H A Dpgsql_statement.c109 if(S->cols) { in pgsql_stmt_dtor()
110 efree(S->cols); in pgsql_stmt_dtor()
111 S->cols = NULL; in pgsql_stmt_dtor()
441 cols[colno].namelen = strlen(cols[colno].name); in pgsql_stmt_describe()
446 switch(S->cols[colno].pgsql_type) { in pgsql_stmt_describe()
458 cols[colno].name, cols[colno].namelen, in pgsql_stmt_describe()
465 cols[colno].param_type = PDO_PARAM_INT; in pgsql_stmt_describe()
470 cols[colno].param_type = PDO_PARAM_INT; in pgsql_stmt_describe()
482 cols[colno].param_type = PDO_PARAM_LOB; in pgsql_stmt_describe()
510 switch(cols[colno].param_type) { in pgsql_stmt_get_col()
[all …]
H A Dphp_pdo_pgsql_int.h67 pdo_pgsql_column *cols; member
/PHP-5.3/ext/pdo_oci/
H A Doci_statement.c96 if (S->cols) { in oci_stmt_dtor()
98 if (S->cols[i].data) { in oci_stmt_dtor()
109 efree(S->cols); in oci_stmt_dtor()
110 S->cols = NULL; in oci_stmt_dtor()
160 if (S->cols) { in oci_stmt_execute()
163 if (S->cols[i].data) { in oci_stmt_execute()
174 efree(S->cols); in oci_stmt_execute()
548 S->cols[colno].data = emalloc(S->cols[colno].datalen + 1); in oci_stmt_describe()
582 S->cols[colno].data = emalloc(S->cols[colno].datalen + 1); in oci_stmt_describe()
590 S->cols[colno].data, S->cols[colno].datalen, dtype, &S->cols[colno].indicator, in oci_stmt_describe()
[all …]
H A Dphp_pdo_oci_int.h67 pdo_oci_column *cols; member
/PHP-5.3/ext/pdo_odbc/
H A Dodbc_stmt.c128 if (S->cols) { in free_cols()
132 if (S->cols[i].data) { in free_cols()
133 efree(S->cols[i].data); in free_cols()
136 efree(S->cols); in free_cols()
137 S->cols = NULL; in free_cols()
577 S->cols[colno].is_unicode = pdo_odbc_sqltype_is_unicode(S, S->cols[colno].coltype); in odbc_stmt_describe()
587 S->cols[colno].is_long = 0; in odbc_stmt_describe()
591 S->cols[colno].data, in odbc_stmt_describe()
592 S->cols[colno].datalen+1, &S->cols[colno].fetched_len); in odbc_stmt_describe()
601 S->cols[colno].data = emalloc(256); in odbc_stmt_describe()
[all …]
H A Dphp_pdo_odbc_int.h149 pdo_odbc_column *cols; member
/PHP-5.3/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_variable_columncount.phpt53 …$db->exec('CREATE PROCEDURE p(IN cols INT) BEGIN IF cols < 2 THEN SELECT cols AS "one"; ELSE SELEC…
84 …CLARE cols INT; SELECT @numcols INTO cols; IF cols < 2 THEN SET @numcols = 2; SELECT cols AS "one"…
/PHP-5.3/ext/mysqli/tests/
H A Dmysqli_stmt_bind_param_many_columns.phpt30 $cols = 2500;
36 $cols = 10;
38 $cols = 10;
57 for ($i = 1; $i <= $cols; $i++) {
65 $stmt = $link->prepare("INSERT INTO test VALUES(".str_repeat("?, ", $cols-1) . "?)");
68 $eval_str="\$stmt->bind_param(\"".str_repeat("s",$cols)."\", ";
69 for ($i = 1; $i < $cols; $i++) {
/PHP-5.3/Zend/
H A Dbench.php268 function mkmatrix ($rows, $cols) { argument
272 for ($j=0; $j<$cols; $j++) {
279 function mmult ($rows, $cols, $m1, $m2) { argument
282 for ($j=0; $j<$cols; $j++) {
284 for ($k=0; $k<$cols; $k++) {
/PHP-5.3/ext/pdo_mysql/
H A Dmysql_statement.c680 struct pdo_column_data *cols = stmt->columns; local
697 if (cols[0].name) {
704 namelen = spprintf(&cols[i].name, 0, "%s.%s", S->fields[i].table, S->fields[i].name);
705 cols[i].namelen = namelen;
708 cols[i].namelen = namelen;
709 cols[i].name = estrndup(S->fields[i].name, namelen);
712 cols[i].precision = S->fields[i].decimals;
713 cols[i].maxlen = S->fields[i].length;
717 cols[i].param_type = PDO_PARAM_ZVAL;
721 cols[i].param_type = PDO_PARAM_STR;
/PHP-5.3/ext/odbc/
H A Dbirdstep.c354 SWORD cols,i,colnamelen; in PHP_FUNCTION() local
378 stat = SQLNumResultCols(res->hstmt,&cols); in PHP_FUNCTION()
385 if ( !cols ) { /* Was INSERT, UPDATE, DELETE, etc. query */ in PHP_FUNCTION()
397 res->values = (VResVal *)safe_emalloc(sizeof(VResVal), cols, 0); in PHP_FUNCTION()
398 res->numcols = cols; in PHP_FUNCTION()
399 for ( i = 0; i < cols; i++ ) { in PHP_FUNCTION()
/PHP-5.3/ext/dom/examples/
H A Ddom1.inc12 <tgroup cols='3'>
/PHP-5.3/ext/dom/tests/
H A Ddom_test.inc12 <tgroup cols='3'>
H A Ddom001.phpt201 <tgroup cols="3">
262 <tgroup cols="3">
/PHP-5.3/ext/pdo/
H A Dpdo_stmt.c2080 struct pdo_column_data *cols = stmt->columns; in pdo_stmt_do_next_rowset() local
2083 efree(cols[i].name); in pdo_stmt_do_next_rowset()
2414 struct pdo_column_data *cols = stmt->columns; in free_statement() local
2417 if (cols[i].name) { in free_statement()
2418 efree(cols[i].name); in free_statement()
2419 cols[i].name = NULL; in free_statement()
/PHP-5.3/win32/build/
H A Dconfutils.js1444 var cols = 80;

Completed in 1192 milliseconds