Searched refs:_precount (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/utilities/
H A Dostream.hpp47 julong _precount; // number of chars output, less _position member in class:outputStream
76 julong count() const { return _precount + _position; }
77 void set_count(julong count) { _precount = count - _position; }
187 void reset() { buffer_pos = 0; _precount = 0; _position = 0; }
286 void reset() { buffer_pos = 0; _precount = 0; _position = 0; }
H A Dostream.cpp52 _precount = 0;
60 _precount = 0;
70 _precount += _position + 1;
75 _precount -= tw-1; // invariant: _precount + _position == total count

Completed in 33 milliseconds