Home
last modified time | relevance | path

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

/PHP-5.5/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.5/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()
442 cols[colno].namelen = strlen(cols[colno].name); in pgsql_stmt_describe()
447 switch(S->cols[colno].pgsql_type) { in pgsql_stmt_describe()
459 cols[colno].name, cols[colno].namelen, in pgsql_stmt_describe()
511 switch(cols[colno].param_type) { in pgsql_stmt_get_col()
514 S->cols[colno].intval = atol(*ptr); in pgsql_stmt_get_col()
619 if (S->cols != NULL){ in pdo_pgsql_stmt_cursor_closer()
620 efree(S->cols); in pdo_pgsql_stmt_cursor_closer()
[all …]
H A Dphp_pdo_pgsql_int.h67 pdo_pgsql_column *cols; member
/PHP-5.5/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()
554 S->cols[colno].data = emalloc(S->cols[colno].datalen + 1); in oci_stmt_describe()
588 S->cols[colno].data = emalloc(S->cols[colno].datalen + 1); in oci_stmt_describe()
596 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.5/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()
583 S->cols[colno].is_unicode = pdo_odbc_sqltype_is_unicode(S, S->cols[colno].coltype); in odbc_stmt_describe()
593 S->cols[colno].is_long = 0; in odbc_stmt_describe()
597 S->cols[colno].data, in odbc_stmt_describe()
598 S->cols[colno].datalen+1, &S->cols[colno].fetched_len); in odbc_stmt_describe()
607 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.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_stmt_variable_columncount.phpt55 …$db->exec('CREATE PROCEDURE p(IN cols INT) BEGIN IF cols < 2 THEN SELECT cols AS "one"; ELSE SELEC…
86 …CLARE cols INT; SELECT @numcols INTO cols; IF cols < 2 THEN SET @numcols = 2; SELECT cols AS "one"…
/PHP-5.5/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.5/Zend/
H A Dbench.php267 function mkmatrix ($rows, $cols) { argument
271 for ($j=0; $j<$cols; $j++) {
278 function mmult ($rows, $cols, $m1, $m2) { argument
281 for ($j=0; $j<$cols; $j++) {
283 for ($k=0; $k<$cols; $k++) {
/PHP-5.5/ext/pdo_mysql/
H A Dmysql_statement.c657 struct pdo_column_data *cols = stmt->columns; local
674 if (cols[0].name) {
681 namelen = spprintf(&cols[i].name, 0, "%s.%s", S->fields[i].table, S->fields[i].name);
682 cols[i].namelen = namelen;
685 cols[i].namelen = namelen;
686 cols[i].name = estrndup(S->fields[i].name, namelen);
689 cols[i].precision = S->fields[i].decimals;
690 cols[i].maxlen = S->fields[i].length;
694 cols[i].param_type = PDO_PARAM_ZVAL;
698 cols[i].param_type = PDO_PARAM_STR;
/PHP-5.5/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.5/ext/dom/examples/
H A Ddom1.inc12 <tgroup cols='3'>
/PHP-5.5/ext/dom/tests/
H A Ddom_test.inc12 <tgroup cols='3'>
H A Ddom001.phpt201 <tgroup cols="3">
262 <tgroup cols="3">
/PHP-5.5/ext/pdo/
H A Dpdo_stmt.c2062 struct pdo_column_data *cols = stmt->columns; in pdo_stmt_do_next_rowset() local
2065 efree(cols[i].name); in pdo_stmt_do_next_rowset()
2387 struct pdo_column_data *cols = stmt->columns; in free_statement() local
2390 if (cols[i].name) { in free_statement()
2391 efree(cols[i].name); in free_statement()
2392 cols[i].name = NULL; in free_statement()
/PHP-5.5/win32/build/
H A Dconfutils.js1534 var cols = 80;

Completed in 60 milliseconds