Lines Matching refs:avail
850 size_t avail; in php_stream_locate_eol() local
856 avail = stream->writepos - stream->readpos; in php_stream_locate_eol()
859 avail = ZSTR_LEN(buf); in php_stream_locate_eol()
864 cr = memchr(readptr, '\r', avail); in php_stream_locate_eol()
865 lf = memchr(readptr, '\n', avail); in php_stream_locate_eol()
878 eol = memchr(readptr, '\r', avail); in php_stream_locate_eol()
881 eol = memchr(readptr, '\n', avail); in php_stream_locate_eol()
893 size_t avail = 0; in _php_stream_get_line() local
919 avail = stream->writepos - stream->readpos; in _php_stream_get_line()
921 if (avail > 0) { in _php_stream_get_line()
934 cpysz = avail; in _php_stream_get_line()