Lines Matching refs:avail
881 size_t avail; in php_stream_locate_eol() local
887 avail = stream->writepos - stream->readpos; in php_stream_locate_eol()
890 avail = ZSTR_LEN(buf); in php_stream_locate_eol()
895 cr = memchr(readptr, '\r', avail); in php_stream_locate_eol()
896 lf = memchr(readptr, '\n', avail); in php_stream_locate_eol()
909 eol = memchr(readptr, '\r', avail); in php_stream_locate_eol()
912 eol = memchr(readptr, '\n', avail); in php_stream_locate_eol()
924 size_t avail = 0; in _php_stream_get_line() local
950 avail = stream->writepos - stream->readpos; in _php_stream_get_line()
952 if (avail > 0) { in _php_stream_get_line()
965 cpysz = avail; in _php_stream_get_line()