Searched refs:cols (Results 1 – 17 of 17) sorted by relevance
/PHP-7.1/ext/gd/tests/ |
H A D | gif.phpt | 53 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-7.1/ext/pdo_pgsql/ |
H A D | pgsql_statement.c | 126 if(S->cols) { in pgsql_stmt_dtor() 127 efree(S->cols); in pgsql_stmt_dtor() 128 S->cols = NULL; in pgsql_stmt_dtor() 487 switch (S->cols[colno].pgsql_type) { in pgsql_stmt_describe() 504 cols[colno].param_type = PDO_PARAM_INT; in pgsql_stmt_describe() 509 cols[colno].param_type = PDO_PARAM_INT; in pgsql_stmt_describe() 549 switch (cols[colno].param_type) { in pgsql_stmt_get_col() 666 switch (S->cols[colno].pgsql_type) { in pgsql_stmt_get_column_meta() 712 if (S->cols != NULL){ in pdo_pgsql_stmt_cursor_closer() 713 efree(S->cols); in pdo_pgsql_stmt_cursor_closer() [all …]
|
H A D | php_pdo_pgsql_int.h | 64 pdo_pgsql_column *cols; member
|
/PHP-7.1/ext/pdo_odbc/ |
H A D | odbc_stmt.c | 128 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() 616 S->cols[colno].is_unicode = pdo_odbc_sqltype_is_unicode(S, S->cols[colno].coltype); in odbc_stmt_describe() 626 S->cols[colno].is_long = 0; in odbc_stmt_describe() 630 S->cols[colno].data, in odbc_stmt_describe() 631 S->cols[colno].datalen+1, &S->cols[colno].fetched_len); in odbc_stmt_describe() 640 S->cols[colno].data = emalloc(256); in odbc_stmt_describe() [all …]
|
H A D | php_pdo_odbc_int.h | 149 pdo_odbc_column *cols; member
|
/PHP-7.1/ext/pdo_oci/ |
H A D | oci_statement.c | 105 if (S->cols) { in oci_stmt_dtor() 107 if (S->cols[i].data) { in oci_stmt_dtor() 120 efree(S->cols); in oci_stmt_dtor() 121 S->cols = NULL; in oci_stmt_dtor() 171 if (S->cols) { in oci_stmt_execute() 174 if (S->cols[i].data) { in oci_stmt_execute() 185 efree(S->cols); in oci_stmt_execute() 574 S->cols[colno].data = emalloc(S->cols[colno].datalen + 1); in oci_stmt_describe() 608 S->cols[colno].data = emalloc(S->cols[colno].datalen + 1); in oci_stmt_describe() 616 S->cols[colno].data, S->cols[colno].datalen, dtype, &S->cols[colno].indicator, in oci_stmt_describe() [all …]
|
H A D | php_pdo_oci_int.h | 69 pdo_oci_column *cols; member
|
/PHP-7.1/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_stmt_variable_columncount.phpt | 55 …$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.1/ext/mysqli/tests/ |
H A D | mysqli_stmt_bind_param_many_columns.phpt | 30 $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.1/Zend/ |
H A D | bench.php | 267 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.1/ext/odbc/ |
H A D | birdstep.c | 354 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-7.1/ext/pdo_mysql/ |
H A D | mysql_statement.c | 681 struct pdo_column_data *cols = stmt->columns; local 698 if (cols[0].name) { 704 cols[i].name = strpprintf(0, "%s.%s", S->fields[i].table, S->fields[i].name); 706 cols[i].name = zend_string_init(S->fields[i].name, S->fields[i].name_length, 0); 709 cols[i].precision = S->fields[i].decimals; 710 cols[i].maxlen = S->fields[i].length; 714 cols[i].param_type = PDO_PARAM_ZVAL; 718 cols[i].param_type = PDO_PARAM_STR;
|
/PHP-7.1/ext/dom/examples/ |
H A D | dom1.inc | 12 <tgroup cols='3'>
|
/PHP-7.1/ext/dom/tests/ |
H A D | dom_test.inc | 12 <tgroup cols='3'>
|
H A D | dom001.phpt | 201 <tgroup cols="3"> 262 <tgroup cols="3">
|
/PHP-7.1/ext/pdo/ |
H A D | pdo_stmt.c | 2019 struct pdo_column_data *cols = stmt->columns; in pdo_stmt_do_next_rowset() local 2022 if (cols[i].name) { in pdo_stmt_do_next_rowset() 2023 zend_string_release(cols[i].name); in pdo_stmt_do_next_rowset() 2329 struct pdo_column_data *cols = stmt->columns; in php_pdo_free_statement() local 2332 if (cols[i].name) { in php_pdo_free_statement() 2333 zend_string_release(cols[i].name); in php_pdo_free_statement() 2334 cols[i].name = NULL; in php_pdo_free_statement()
|
/PHP-7.1/win32/build/ |
H A D | confutils.js | 1778 var cols = 80;
|
Completed in 52 milliseconds