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

/openjdk7/hotspot/src/share/vm/code/
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);

Completed in 23 milliseconds