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

/openjdk7/hotspot/src/share/vm/services/
H A DmemTrackWorker.hpp84 int _head, _tail; // head and tail pointers to above circular buffer member in class:MemTrackWorker
114 return (_tail >= _head ? (_tail - _head + 1) : (MAX_GENERATIONS - (_head - _tail) + 1));
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegionSet.hpp291 HeapRegion* _tail; member in class:HeapRegionLinkedList
295 HeapRegion* tail() { return _tail; }
H A DsparsePRT.hpp340 SparsePRT* _tail; member in class:VALUE_OBJ_CLASS_SPEC
343 SparsePRTCleanupTask() : _head(NULL), _tail(NULL) { }
347 SparsePRT* tail() { return _tail; }
/openjdk7/hotspot/src/share/vm/memory/
H A DfreeList.hpp54 Chunk* _tail; // Tail of list of free chunks member in class:VALUE_OBJ_CLASS_SPEC
128 return _tail;
132 _tail = v;
133 assert(!_tail || _tail->size() == _size, "bad chunk size");
/openjdk7/hotspot/src/os/windows/vm/
H A DattachListener_windows.cpp75 static Win32AttachOperation* _tail; member in class:Win32AttachListener
81 static Win32AttachOperation* tail() { return _tail; }
82 static void set_tail(Win32AttachOperation* tail) { _tail = tail; }
115 Win32AttachOperation* Win32AttachListener::_tail; member in class:Win32AttachListener
/openjdk7/hotspot/src/os/solaris/vm/
H A DattachListener_solaris.cpp98 static SolarisAttachOperation* _tail; member in class:SolarisAttachListener
103 static SolarisAttachOperation* tail() { return _tail; }
104 static void set_tail(SolarisAttachOperation* tail) { _tail = tail; }
172 SolarisAttachOperation* SolarisAttachListener::_tail = NULL; member in class:SolarisAttachListener
/openjdk7/hotspot/src/share/vm/adlc/
H A Dforms.hpp257 Form *_tail; member in class:FormList
265 if (_tail==NULL) { _root = _tail = _cur = entry;}
266 else { _tail->_next = entry; _tail = entry;}
315 FormList() { _justReset = 1; _justReset2 = 1; _root = NULL; _tail = NULL; _cur = NULL; _cur2 = NULL;};
/openjdk7/hotspot/src/share/vm/opto/
H A Dsuperword.hpp122 DepMem* _tail; member in class:VALUE_OBJ_CLASS_SPEC
127 _tail = new (_arena) DepMem(NULL);
131 DepMem* tail() { return _tail; }
H A Dloopnode.hpp336 Node *_tail; // Tail of loop member in class:IdealLoopTree
337 inline Node *tail(); // Handle lazy update of _tail field
354 _head(head), _tail(tail),
484 bool is_loop() { return !_irreducible && _tail && !_tail->is_top(); }
1087 // Handle lazy update of _tail field
1088 Node *n = _tail;
1093 _tail = n;
/openjdk7/hotspot/src/share/vm/ci/
H A DciTypeFlow.hpp720 Block* _tail; // Tail of loop member in class:ciTypeFlow::Loop
726 _head(head), _tail(tail),
734 Block* tail() const { return _tail; }
739 void set_tail(Block* tl) { _tail = tl; }
762 bool is_root() const { return _tail->pre_order() == max_jint; }

Completed in 47 milliseconds