Searched refs:_queue_end (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/code/
H A Dstubs.cpp36 // are specified by the _queue_begin & _queue_end indices. The queue
77 _queue_end = 0;
120 if (_queue_end + requested_size <= _buffer_size) {
129 _buffer_limit = _queue_end;
130 _queue_end = 0;
156 _queue_end += committed_size;
170 if (_queue_begin == _queue_end) {
174 _queue_end = 0;
237 guarantee(0 <= _queue_end && _queue_end <
[all...]
H A Dstubs.hpp167 int _queue_end; // the (byte) index of the first entry after the queue (word-aligned) member in class:StubQueue
172 bool is_contiguous() const { return _queue_begin <= _queue_end; }
175 Stub* current_stub() const { return stub_at(_queue_end); }
195 bool is_empty() const { return _queue_begin == _queue_end; }
197 int available_space() const { int d = _queue_begin - _queue_end - 1; return d < 0 ? d + _buffer_size : d; }
222 return (i == _queue_end) ? NULL : stub_at(i);
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp815 nonstatic_field(StubQueue, _queue_end, int) \

Completed in 42 milliseconds