Home
last modified time | relevance | path

Searched refs:toread (Results 1 – 2 of 2) sorted by relevance

/php-src/main/streams/
H A Dstreams.c720 toread = size; in _php_stream_read()
725 size -= toread; in _php_stream_read()
726 buf += toread; in _php_stream_read()
738 if (toread < 0) { in _php_stream_read()
742 return toread; in _php_stream_read()
756 toread = size; in _php_stream_read()
759 if (toread > 0) { in _php_stream_read()
764 if (toread > 0) { in _php_stream_read()
766 buf += toread; in _php_stream_read()
767 size -= toread; in _php_stream_read()
[all …]
/php-src/ext/hash/
H A Dhash.c725 zend_long toread = 1024; in PHP_FUNCTION() local
728 if (length > 0 && toread > length) { in PHP_FUNCTION()
729 toread = length; in PHP_FUNCTION()
732 if ((n = php_stream_read(stream, buf, toread)) <= 0) { in PHP_FUNCTION()

Completed in 16 milliseconds