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

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DsparsePRT.hpp242 void set_next_expanded(SparsePRT* nxt) { _next_expanded = nxt; } argument
H A DheapRegionRemSet.cpp201 PerRegionTable* nxt = fl->next(); local
204 Atomic::cmpxchg_ptr(nxt, &_free_list, fl);
630 PerRegionTable* nxt = cur->collision_list_next(); local
637 *prev = nxt;
656 *prev = nxt;
665 cur = nxt;
/openjdk7/hotspot/src/share/vm/adlc/
H A DarchDesc.hpp75 MatchList(MatchList *nxt, Predicate *prd): _next(nxt), _pred(prd), _cost(NULL){ argument
78 MatchList(MatchList *nxt, Predicate *prd, const char *cost, argument
81 : _next(nxt), _pred(prd), _cost(cost), _opcode(opcode),
/openjdk7/hotspot/src/share/vm/runtime/
H A DobjectMonitor.cpp535 ObjectWaiter * nxt ; local
537 node._next = nxt = _cxq ;
538 if (Atomic::cmpxchg_ptr (&node, &_cxq, nxt) == nxt) break ;
573 if ((SyncFlags & 16) == 0 && nxt == NULL && _EntryList == NULL) {
830 ObjectWaiter * nxt = SelfNode->_next ; local
832 if (nxt != NULL) nxt->_prev = prv ;
833 if (prv != NULL) prv->_next = nxt ;
834 if (SelfNode == _EntryList ) _EntryList = nxt ;
[all...]

Completed in 45 milliseconds