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

/openjdk7/hotspot/src/share/vm/runtime/
H A DobjectMonitor.hpp96 static int succ_offset_in_bytes() { return offset_of(ObjectMonitor, _succ) ; }
150 _succ = NULL ;
162 // _cxq == 0 _succ == NULL _owner == NULL _waiters == 0
169 // _cxq == 0 _succ == NULL _owner == NULL _waiters == 0
173 _succ = NULL ;
261 Thread * volatile _succ ; // Heir presumptive thread - used for futile wakeup throttling member in class:ObjectMonitor
/openjdk7/hotspot/src/share/vm/opto/
H A Dsuperword.hpp76 DepMem* _succ; member in class:DepEdge
82 _pred(pred), _succ(succ), _next_in(next_in), _next_out(next_out) {}
87 DepMem* succ() { return _succ; }
/openjdk7/hotspot/src/share/vm/ci/
H A DciTypeFlow.hpp512 Block* _succ; member in class:ciTypeFlow::SuccIter
514 SuccIter() : _pred(NULL), _index(-1), _succ(NULL) {}
515 SuccIter(Block* pred) : _pred(pred), _index(-1), _succ(NULL) { next(); }
519 Block* succ() { return _succ; } // Return current successor

Completed in 37 milliseconds