Home
last modified time | relevance | path

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

/PHP-7.4/ext/gd/tests/
H A Dgif.phpt52 echo "<4 cols: ok\n";
63 echo "<8 cols: ok\n";
75 echo "<16 cols: ok\n";
138 <4 cols: ok
139 <8 cols: ok
140 <16 cols: ok
141 <32 cols: ok
142 <64 cols: ok
143 <128 cols: ok
144 <256 cols: ok
[all …]
/PHP-7.4/ext/pdo_pgsql/
H A Dpgsql_statement.c124 if(S->cols) { in pgsql_stmt_dtor()
125 efree(S->cols); in pgsql_stmt_dtor()
126 S->cols = NULL; in pgsql_stmt_dtor()
485 switch (S->cols[colno].pgsql_type) { in pgsql_stmt_describe()
502 cols[colno].param_type = PDO_PARAM_INT; in pgsql_stmt_describe()
507 cols[colno].param_type = PDO_PARAM_INT; in pgsql_stmt_describe()
547 switch (cols[colno].param_type) { in pgsql_stmt_get_col()
664 switch (S->cols[colno].pgsql_type) { in pgsql_stmt_get_column_meta()
710 if (S->cols != NULL){ in pdo_pgsql_stmt_cursor_closer()
711 efree(S->cols); in pdo_pgsql_stmt_cursor_closer()
[all …]
H A Dphp_pdo_pgsql_int.h62 pdo_pgsql_column *cols; member
/PHP-7.4/ext/pdo_odbc/
H A Dodbc_stmt.c126 if (S->cols) { in free_cols()
130 if (S->cols[i].data) { in free_cols()
131 efree(S->cols[i].data); in free_cols()
134 efree(S->cols); in free_cols()
135 S->cols = NULL; in free_cols()
266 if (S->cols == NULL) { in odbc_stmt_execute()
619 S->cols[colno].is_unicode = pdo_odbc_sqltype_is_unicode(S, S->cols[colno].coltype); in odbc_stmt_describe()
629 S->cols[colno].is_long = 0; in odbc_stmt_describe()
633 S->cols[colno].data, in odbc_stmt_describe()
634 S->cols[colno].datalen+1, &S->cols[colno].fetched_len); in odbc_stmt_describe()
[all …]
H A Dphp_pdo_odbc_int.h147 pdo_odbc_column *cols; member
/PHP-7.4/ext/pdo_oci/
H A Doci_statement.c103 if (S->cols) { in oci_stmt_dtor()
105 if (S->cols[i].data) { in oci_stmt_dtor()
118 efree(S->cols); in oci_stmt_dtor()
119 S->cols = NULL; in oci_stmt_dtor()
169 if (S->cols) { in oci_stmt_execute()
172 if (S->cols[i].data) { in oci_stmt_execute()
183 efree(S->cols); in oci_stmt_execute()
569 S->cols[colno].data = emalloc(S->cols[colno].datalen + 1); in oci_stmt_describe()
603 S->cols[colno].data = emalloc(S->cols[colno].datalen + 1); in oci_stmt_describe()
611 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-7.4/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-7.4/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-7.4/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-7.4/ext/pdo_mysql/
H A Dmysql_statement.c683 struct pdo_column_data *cols = stmt->columns; in pdo_mysql_stmt_describe() local
700 if (cols[0].name) { in pdo_mysql_stmt_describe()
706 cols[i].name = strpprintf(0, "%s.%s", S->fields[i].table, S->fields[i].name); in pdo_mysql_stmt_describe()
708 cols[i].name = zend_string_init(S->fields[i].name, S->fields[i].name_length, 0); in pdo_mysql_stmt_describe()
711 cols[i].precision = S->fields[i].decimals; in pdo_mysql_stmt_describe()
712 cols[i].maxlen = S->fields[i].length; in pdo_mysql_stmt_describe()
716 cols[i].param_type = PDO_PARAM_ZVAL; in pdo_mysql_stmt_describe()
720 cols[i].param_type = PDO_PARAM_STR; in pdo_mysql_stmt_describe()
/PHP-7.4/ext/dom/tests/
H A Ddom_test.inc12 <tgroup cols='3'>
H A Ddom001.phpt201 <tgroup cols="3">
262 <tgroup cols="3">
/PHP-7.4/ext/pdo/
H A Dpdo_stmt.c2018 struct pdo_column_data *cols = stmt->columns; in pdo_stmt_do_next_rowset() local
2021 if (cols[i].name) { in pdo_stmt_do_next_rowset()
2022 zend_string_release_ex(cols[i].name, 0); in pdo_stmt_do_next_rowset()
2284 struct pdo_column_data *cols = stmt->columns; in php_pdo_free_statement() local
2287 if (cols[i].name) { in php_pdo_free_statement()
2288 zend_string_release_ex(cols[i].name, 0); in php_pdo_free_statement()
2289 cols[i].name = NULL; in php_pdo_free_statement()
/PHP-7.4/win32/build/
H A Dconfutils.js1829 var cols = 80;

Completed in 39 milliseconds