Home
last modified time | relevance | path

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

/PHP-8.0/main/streams/
H A Dstreams.c692 toread = size; in _php_stream_read()
697 size -= toread; in _php_stream_read()
698 buf += toread; in _php_stream_read()
709 if (toread < 0) { in _php_stream_read()
713 return toread; in _php_stream_read()
727 toread = size; in _php_stream_read()
730 if (toread > 0) { in _php_stream_read()
735 if (toread > 0) { in _php_stream_read()
737 buf += toread; in _php_stream_read()
738 size -= toread; in _php_stream_read()
[all …]
/PHP-8.0/ext/hash/
H A Dhash.c713 zend_long toread = 1024; in PHP_FUNCTION() local
716 if (length > 0 && toread > length) { in PHP_FUNCTION()
717 toread = length; in PHP_FUNCTION()
720 if ((n = php_stream_read(stream, buf, toread)) <= 0) { in PHP_FUNCTION()

Completed in 26 milliseconds