Home
last modified time | relevance | path

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

/php-src/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()
/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 …]

Completed in 15 milliseconds