Home
last modified time | relevance | path

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

/PHP-8.2/main/streams/
H A Dstreams.c706 toread = size; in _php_stream_read()
711 size -= toread; in _php_stream_read()
712 buf += toread; in _php_stream_read()
723 if (toread < 0) { in _php_stream_read()
727 return toread; in _php_stream_read()
741 toread = size; in _php_stream_read()
744 if (toread > 0) { in _php_stream_read()
749 if (toread > 0) { in _php_stream_read()
751 buf += toread; in _php_stream_read()
752 size -= toread; in _php_stream_read()
[all …]
/PHP-8.2/ext/hash/
H A Dhash.c726 zend_long toread = 1024; in PHP_FUNCTION() local
729 if (length > 0 && toread > length) { in PHP_FUNCTION()
730 toread = length; in PHP_FUNCTION()
733 if ((n = php_stream_read(stream, buf, toread)) <= 0) { in PHP_FUNCTION()

Completed in 22 milliseconds