Searched refs:nrows (Results 1 – 5 of 5) sorted by relevance
/PHP-7.2/ext/gd/libgd/ |
H A D | gd_jpeg.c | 342 JDIMENSION nrows; in gdImageCreateFromJpegCtxEx() local 472 nrows = jpeg_read_scanlines (&cinfo, rowptr, 1); in gdImageCreateFromJpegCtxEx() 473 if (nrows != 1) { in gdImageCreateFromJpegCtxEx() 474 gd_error_ex(GD_WARNING, "gd-jpeg: error: jpeg_read_scanlines returns %u, expected 1", nrows); in gdImageCreateFromJpegCtxEx() 485 nrows = jpeg_read_scanlines (&cinfo, rowptr, 1); in gdImageCreateFromJpegCtxEx() 486 if (nrows != 1) { in gdImageCreateFromJpegCtxEx() 487 gd_error_ex(GD_WARNING, "gd-jpeg: error: jpeg_read_scanlines returns %u, expected 1", nrows); in gdImageCreateFromJpegCtxEx()
|
/PHP-7.2/ext/oci8/ |
H A D | oci8_statement.c | 249 int php_oci_statement_fetch(php_oci_statement *statement, ub4 nrows) in php_oci_statement_fetch() argument 266 …PHP_OCI_CALL_RETURN(errstatus, OCIStmtFetch2, (statement->stmt, statement->err, nrows, OCI_FETCH_N… in php_oci_statement_fetch() 268 …PHP_OCI_CALL_RETURN(errstatus, OCIStmtFetch, (statement->stmt, statement->err, nrows, OCI_FETCH_NE… in php_oci_statement_fetch() 271 if (errstatus == OCI_NO_DATA || nrows == 0) { in php_oci_statement_fetch() 285 if (nrows == 0) { in php_oci_statement_fetch() 346 …PHP_OCI_CALL_RETURN(errstatus, OCIStmtFetch2, (statement->stmt, statement->err, nrows, OCI_FETCH_N… in php_oci_statement_fetch() 348 …PHP_OCI_CALL_RETURN(errstatus, OCIStmtFetch, (statement->stmt, statement->err, nrows, OCI_FETCH_NE… in php_oci_statement_fetch()
|
H A D | oci8_interface.c | 1438 ub4 nrows = 1; /* only one row at a time is supported for now */ in PHP_FUNCTION() local 1446 if (php_oci_statement_fetch(statement, nrows)) { in PHP_FUNCTION() 1470 ub4 nrows = 1; in PHP_FUNCTION() local 1488 if (php_oci_statement_fetch(statement, nrows)) { in PHP_FUNCTION() 1503 while (!php_oci_statement_fetch(statement, nrows)) { in PHP_FUNCTION() 1564 while (!php_oci_statement_fetch(statement, nrows)) { in PHP_FUNCTION()
|
H A D | php_oci8_int.h | 490 int php_oci_statement_fetch(php_oci_statement *statement, ub4 nrows);
|
H A D | oci8.c | 2549 ub4 nrows = 1; in php_oci_fetch_row() local 2607 if (php_oci_statement_fetch(statement, nrows)) { in php_oci_fetch_row() 2644 if (php_oci_statement_fetch(statement, nrows)) { in php_oci_fetch_row() 2653 if (php_oci_statement_fetch(statement, nrows)) { in php_oci_fetch_row()
|
Completed in 25 milliseconds