Searched defs:_cur (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1GCPhaseTimes.cpp39 int _cur; member in class:LineBuffer
42 int res = vsnprintf(&_buffer[_cur], BUFFER_LEN - _cur, format, ap);
44 _cur += res;
48 _cur = BUFFER_LEN; // vsnprintf above should not add to _buffer if we are called again
53 explicit LineBuffer(int indent_level): _indent_level(indent_level), _cur(0) {
54 for (; (_cur < BUFFER_LEN && _cur < (_indent_level * INDENT_CHARS)); _cur++) {
55 _buffer[_cur]
[all...]
H A DsparsePRT.hpp220 // Iterations are done on the _cur hash table, since they only need to
223 RSHashTable* _cur; member in class:VALUE_OBJ_CLASS_SPEC
280 // Ensure that "_cur" and "_next" point to the same table.
285 RSHashTable* cur() const { return _cur; }
/openjdk7/hotspot/src/share/vm/services/
H A DmemRecorder.hpp133 MemPointer* _cur; member in class:SequencedRecordIterator
138 _cur = next_record();
143 _cur = next_record();
148 return _cur;
153 _cur = next_record();
154 return _cur;
/openjdk7/hotspot/src/share/vm/adlc/
H A Dforms.hpp258 Form *_cur; member in class:FormList
265 if (_tail==NULL) { _root = _tail = _cur = entry;}
268 Form * current() { return _cur; };
270 else if (_cur) _cur = _cur->_next;
271 return _cur;};
272 void reset() { if (_root) {_cur = _root; _justReset = 1;} };
315 FormList() { _justReset = 1; _justReset2 = 1; _root = NULL; _tail = NULL; _cur = NULL; _cur2 = NULL;};
325 int _cur; // Inser member in class:NameList
[all...]

Completed in 35 milliseconds