to_read            93 ext/mysqlnd/mysqlnd_net.c 	size_t to_read = count, ret;
to_read            99 ext/mysqlnd/mysqlnd_net.c 	net_stream->chunk_size = MIN(to_read, net->data->options.net_read_buffer_size);
to_read           100 ext/mysqlnd/mysqlnd_net.c 	while (to_read) {
to_read           101 ext/mysqlnd/mysqlnd_net.c 		if (!(ret = php_stream_read(net_stream, (char *) p, to_read))) {
to_read           107 ext/mysqlnd/mysqlnd_net.c 		to_read -= ret;
to_read           109 ext/mysqlnd/mysqlnd_net.c 	MYSQLND_INC_CONN_STATISTIC_W_VALUE(stats, STAT_BYTES_RECEIVED, count - to_read);
to_read           656 ext/mysqlnd/mysqlnd_net.c 	size_t to_read = count;
to_read           663 ext/mysqlnd/mysqlnd_net.c 			size_t to_read_from_buffer = MIN(net->uncompressed_data->bytes_left(net->uncompressed_data), to_read);
to_read           668 ext/mysqlnd/mysqlnd_net.c 				to_read -= to_read_from_buffer;
to_read           670 ext/mysqlnd/mysqlnd_net.c 			DBG_INF_FMT("left "MYSQLND_SZ_T_SPEC" to read", to_read);
to_read           676 ext/mysqlnd/mysqlnd_net.c 		if (to_read) {
to_read           707 ext/mysqlnd/mysqlnd_net.c 			DBG_RETURN(net->data->m.receive_ex(net, p, to_read, conn_stats, error_info TSRMLS_CC));
to_read           712 ext/mysqlnd/mysqlnd_net.c 	DBG_RETURN(net->data->m.network_read_ex(net, p, to_read, conn_stats, error_info TSRMLS_CC));
to_read            95 ext/phar/dirstream.c 	size_t to_read;
to_read           106 ext/phar/dirstream.c 	to_read = MIN(keylen, count);
to_read           108 ext/phar/dirstream.c 	if (to_read == 0 || count < keylen) {
to_read           113 ext/phar/dirstream.c 	memcpy(((php_stream_dirent *) buf)->d_name, str_key, to_read);
to_read           114 ext/phar/dirstream.c 	((php_stream_dirent *) buf)->d_name[to_read + 1] = '\0';
to_read           376 ext/session/session.c 			int to_read = PS(entropy_length);
to_read           378 ext/session/session.c 			while (to_read > 0) {
to_read           379 ext/session/session.c 				n = read(fd, rbuf, MIN(to_read, sizeof(rbuf)));
to_read           395 ext/session/session.c 				to_read -= n;
to_read           362 ext/standard/streamsfuncs.c 	long to_read = 0;
to_read           367 ext/standard/streamsfuncs.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl|lz", &zstream, &to_read, &flags, &zremote) == FAILURE) {
to_read           378 ext/standard/streamsfuncs.c 	if (to_read <= 0) {
to_read           383 ext/standard/streamsfuncs.c 	read_buf = safe_emalloc(1, to_read, 1);
to_read           385 ext/standard/streamsfuncs.c 	recvd = php_stream_xport_recvfrom(stream, read_buf, to_read, flags, NULL, NULL,
to_read           331 sapi/cli/php_http_parser.c   size_t to_read;
to_read          1444 sapi/cli/php_http_parser.c         to_read = MIN(pe - p, (size_t)parser->content_length);
to_read          1445 sapi/cli/php_http_parser.c         if (to_read > 0) {
to_read          1446 sapi/cli/php_http_parser.c           if (settings->on_body) settings->on_body(parser, p, to_read);
to_read          1447 sapi/cli/php_http_parser.c           p += to_read - 1;
to_read          1448 sapi/cli/php_http_parser.c           parser->content_length -= to_read;
to_read          1458 sapi/cli/php_http_parser.c         to_read = pe - p;
to_read          1459 sapi/cli/php_http_parser.c         if (to_read > 0) {
to_read          1460 sapi/cli/php_http_parser.c           if (settings->on_body) settings->on_body(parser, p, to_read);
to_read          1461 sapi/cli/php_http_parser.c           p += to_read - 1;
to_read          1529 sapi/cli/php_http_parser.c         to_read = MIN(pe - p, (size_t)(parser->content_length));
to_read          1531 sapi/cli/php_http_parser.c         if (to_read > 0) {
to_read          1532 sapi/cli/php_http_parser.c           if (settings->on_body) settings->on_body(parser, p, to_read);
to_read          1533 sapi/cli/php_http_parser.c           p += to_read - 1;
to_read          1536 sapi/cli/php_http_parser.c         if (to_read == parser->content_length) {
to_read          1540 sapi/cli/php_http_parser.c         parser->content_length -= to_read;