nrows             331 ext/gd/libgd/gd_jpeg.c 	JDIMENSION nrows;
nrows             449 ext/gd/libgd/gd_jpeg.c 			nrows = jpeg_read_scanlines (&cinfo, rowptr, 1);
nrows             450 ext/gd/libgd/gd_jpeg.c 			if (nrows != 1) {
nrows             451 ext/gd/libgd/gd_jpeg.c 				php_gd_error_ex(E_WARNING, "gd-jpeg: error: jpeg_read_scanlines returns %u, expected 1", nrows);
nrows             462 ext/gd/libgd/gd_jpeg.c 			nrows = jpeg_read_scanlines (&cinfo, rowptr, 1);
nrows             463 ext/gd/libgd/gd_jpeg.c 			if (nrows != 1) {
nrows             464 ext/gd/libgd/gd_jpeg.c 				php_gd_error_ex(E_WARNING, "gd-jpeg: error: jpeg_read_scanlines returns %u, expected 1", nrows);
nrows            2657 ext/oci8/oci8.c 	ub4 nrows = 1;
nrows            2710 ext/oci8/oci8.c 	if (php_oci_statement_fetch(statement, nrows)) {
nrows            2746 ext/oci8/oci8.c 	if (php_oci_statement_fetch(statement, nrows)) {
nrows            2755 ext/oci8/oci8.c 			if (php_oci_statement_fetch(statement, nrows)) {
nrows            1383 ext/oci8/oci8_interface.c 	ub4 nrows = 1; /* only one row at a time is supported for now */
nrows            1391 ext/oci8/oci8_interface.c 	if (php_oci_statement_fetch(statement, nrows)) {
nrows            1415 ext/oci8/oci8_interface.c 	ub4 nrows = 1;
nrows            1429 ext/oci8/oci8_interface.c 		if (php_oci_statement_fetch(statement, nrows)) {
nrows            1441 ext/oci8/oci8_interface.c 		while (!php_oci_statement_fetch(statement, nrows)) {
nrows            1492 ext/oci8/oci8_interface.c 		while (!php_oci_statement_fetch(statement, nrows)) {
nrows             245 ext/oci8/oci8_statement.c int php_oci_statement_fetch(php_oci_statement *statement, ub4 nrows)
nrows             261 ext/oci8/oci8_statement.c 	PHP_OCI_CALL_RETURN(errstatus, OCIStmtFetch, (statement->stmt, statement->err, nrows, OCI_FETCH_NEXT, OCI_DEFAULT));
nrows             263 ext/oci8/oci8_statement.c 	if (errstatus == OCI_NO_DATA || nrows == 0) {
nrows             277 ext/oci8/oci8_statement.c 		if (nrows == 0) {
nrows             337 ext/oci8/oci8_statement.c 		PHP_OCI_CALL_RETURN(errstatus, OCIStmtFetch, (statement->stmt, statement->err, nrows, OCI_FETCH_NEXT, OCI_DEFAULT));
nrows             488 ext/oci8/php_oci8_int.h int php_oci_statement_fetch(php_oci_statement *statement, ub4 nrows);