Home
last modified time | relevance | path

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

/PHP-7.4/main/streams/
H A Dstreams.c694 toread = size; in _php_stream_read()
699 size -= toread; in _php_stream_read()
700 buf += toread; in _php_stream_read()
711 if (toread < 0) { in _php_stream_read()
715 return toread; in _php_stream_read()
729 toread = size; in _php_stream_read()
732 if (toread > 0) { in _php_stream_read()
737 if (toread > 0) { in _php_stream_read()
739 buf += toread; in _php_stream_read()
740 size -= toread; in _php_stream_read()
[all …]
/PHP-7.4/ext/hash/
H A Dhash.c461 zend_long toread = 1024; in PHP_FUNCTION() local
464 if (length > 0 && toread > length) { in PHP_FUNCTION()
465 toread = length; in PHP_FUNCTION()
468 if ((n = php_stream_read(stream, buf, toread)) <= 0) { in PHP_FUNCTION()

Completed in 16 milliseconds