Searched defs:nrows (Results 1 - 5 of 5) sorted by relevance
| /PHP_5_3/ext/gd/libgd/ |
| H A D | gd_jpeg.c | 312 JDIMENSION nrows; local 430 nrows = jpeg_read_scanlines (&cinfo, rowptr, 1); 431 if (nrows != 1) { 432 php_gd_error_ex(E_WARNING, "gd-jpeg: error: jpeg_read_scanlines returns %u, expected 1", nrows); 443 nrows = jpeg_read_scanlines (&cinfo, rowptr, 1); 444 if (nrows != 1) { 445 php_gd_error_ex(E_WARNING, "gd-jpeg: error: jpeg_read_scanlines returns %u, expected 1", nrows);
|
| /PHP_5_3/ext/oci8/ |
| H A D | oci8.c | 2576 ub4 nrows = 1; local 2622 if (php_oci_statement_fetch(statement, nrows TSRMLS_CC)) {
|
| H A D | oci8_interface.c | 1367 ub4 nrows = 1; /* only one row at a time is supported for now */ local 1375 if (php_oci_statement_fetch(statement, nrows TSRMLS_CC)) { 1398 ub4 nrows = 1; local 1412 if (php_oci_statement_fetch(statement, nrows TSRMLS_CC)) { 1424 while (!php_oci_statement_fetch(statement, nrows TSRMLS_CC)) { 1485 while (!php_oci_statement_fetch(statement, nrows TSRMLS_CC)) {
|
| /PHP_5_3/ext/pdo_dblib/ |
| H A D | php_pdo_dblib_int.h | 135 int nrows; member in struct:__anon131
|
| /PHP_5_3/ext/sqlite/ |
| H A D | sqlite.c | 142 int nrows; member in struct:php_sqlite_result 699 if (!res->buffered && res->nrows) { 700 res->nrows = 1; /* only one row is stored */ 702 for (i = 0; i < res->nrows; i++) { 1272 if (res && res->curr_row < res->nrows && res->nrows) { /* curr_row may be -1 */ 1313 if (res->curr_row >= res->nrows) { 1788 if (!rres->nrows) { 1810 if (rres->nrows + 1 >= rres->alloc_rows) { 1814 base = rres->nrows * rre [all...] |
Completed in 16 milliseconds