Lines Matching refs:readptr
883 const char *readptr; in php_stream_locate_eol() local
886 readptr = (char*)stream->readbuf + stream->readpos; in php_stream_locate_eol()
889 readptr = ZSTR_VAL(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()
954 char *readptr; in _php_stream_get_line() local
958 readptr = (char*)stream->readbuf + stream->readpos; in _php_stream_get_line()
962 cpysz = eol - readptr + 1; in _php_stream_get_line()
986 memcpy(buf, readptr, cpysz); in _php_stream_get_line()