Lines Matching refs:cpysz
953 size_t cpysz = 0; in _php_stream_get_line() local
962 cpysz = eol - readptr + 1; in _php_stream_get_line()
965 cpysz = avail; in _php_stream_get_line()
976 bufstart = erealloc(bufstart, current_buf_size + cpysz + 1); in _php_stream_get_line()
977 current_buf_size += cpysz + 1; in _php_stream_get_line()
980 if (cpysz >= maxlen - 1) { in _php_stream_get_line()
981 cpysz = maxlen - 1; in _php_stream_get_line()
986 memcpy(buf, readptr, cpysz); in _php_stream_get_line()
988 stream->position += cpysz; in _php_stream_get_line()
989 stream->readpos += cpysz; in _php_stream_get_line()
990 buf += cpysz; in _php_stream_get_line()
991 maxlen -= cpysz; in _php_stream_get_line()
992 total_copied += cpysz; in _php_stream_get_line()