Searched refs:_next (Results 1 - 25 of 122) sorted by relevance

12345

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/stream/buffer/
H A DFragmentedArray.java30 protected FragmentedArray<T> _next; field in class:FragmentedArray
40 previous._next = this;
56 return _next;
60 _next = next;
73 previous._next = this;
/openjdk7/hotspot/src/share/vm/runtime/
H A DmonitorChunk.hpp38 MonitorChunk* _next; member in class:MonitorChunk
45 MonitorChunk* next() const { return _next; }
46 void set_next(MonitorChunk* next) { _next = next; }
H A DmonitorChunk.cpp33 _next = NULL;
H A DjniHandles.cpp295 thread->set_free_handle_block(block->_next);
321 _block_free_list = _block_free_list->_next;
325 block->_next = NULL;
350 while ( block->_next != NULL ) block = block->_next;
351 block->_next = freelist;
365 JNIHandleBlock* next = block->_next;
366 block->_next = _block_free_list;
386 current = current->_next) {
410 for (JNIHandleBlock* current = this; current != NULL; current = current->_next) {
[all...]
H A DobjectMonitor.cpp537 node._next = nxt = _cxq ;
830 ObjectWaiter * nxt = SelfNode->_next ;
833 if (prv != NULL) prv->_next = nxt ;
855 if (v != SelfNode || Atomic::cmpxchg_ptr (SelfNode->_next, &_cxq, v) != v) {
865 for (p = v ; p != NULL && p != SelfNode; p = p->_next) {
873 assert (q->_next == p, "invariant") ;
874 q->_next = p->_next ;
881 SelfNode->_next = (ObjectWaiter *) 0xBAD ;
1111 for (p = w ; p != NULL ; p = p->_next) {
[all...]
H A Darguments.hpp51 SystemProperty* _next; member in class:SystemProperty
59 SystemProperty* next() const { return _next; }
60 void set_next(SystemProperty* next) { _next = next; }
112 _next = NULL;
126 AgentLibrary* _next; member in class:AgentLibrary
135 AgentLibrary* next() const { return _next; }
149 _next = NULL;
167 _last->_next = lib;
170 lib->_next = NULL;
187 _first = curr->_next;
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/streaming/
H A DPrefixFactoryImpl.java40 _next = 1;
53 prefix = _base + Integer.toString(_next++);
61 private int _next; field in class:PrefixFactoryImpl
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/util/
H A DFixedEntryStringIntMap.java65 _fixedEntry._next = null;
102 _table[tableIndex] = _fixedEntry._next;
105 while (previousEntry._next != _fixedEntry) {
106 previousEntry = previousEntry._next;
108 previousEntry._next = _fixedEntry._next;
/openjdk7/hotspot/src/share/vm/prims/
H A DprivilegedStack.hpp38 PrivilegedElement* _next; // Link to next one on stack member in class:VALUE_OBJ_CLASS_SPEC
46 PrivilegedElement *next() const { return _next; }
H A DprivilegedStack.cpp43 _next = next;
53 cur = cur->_next;
74 if (_next != NULL) {
75 return _next->contains(addr);
H A DjvmtiEnvThreadState.hpp115 JvmtiEnvThreadState *_next; member in class:JvmtiEnvThreadState
133 JvmtiEnvThreadState* next() { return _next; }
136 void set_next(JvmtiEnvThreadState* link) { _next = link; }
H A DjvmtiRawMonitor.cpp137 Node._next = _EntryList ;
141 _EntryList = Node._next ;
162 _EntryList = w->_next ;
184 Node._next = _WaitSet ;
209 for (p = _WaitSet ; p != &Node; p = p->_next) {
215 _WaitSet = p->_next ;
217 guarantee (p == q->_next, "invariant") ;
218 q->_next = p->_next ;
249 _WaitSet = w->_next ;
[all...]
/openjdk7/hotspot/src/share/vm/adlc/
H A Dfilebuff.cpp97 _next = NULL; // No chained regions
103 if( _next ) delete _next;
111 if( _next ) br->_next = _next->copy();
128 if( _next ) _next->merge( br ); // Merge with remainder of list
129 else _next = br; // No more in this list; just append.
133 FileBuffRegion *nr = br->_next; // Ge
[all...]
H A Darena.cpp36 _next = NULL; // Chain on the linked list
44 Chunk *tmp = k->_next;
53 _next->chop();
54 _next = NULL;
85 k = k->_next; // Bump along to next Chunk
99 if( k ) k->_next = _chunk; // Append new chunk to end of linked list
157 for( Chunk *c = _first; c; c = c->_next )
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DfreeChunk.hpp63 FreeChunk* _next; member in class:VALUE_OBJ_CLASS_SPEC
99 debug_only(void* next_addr() const { return (void*)&_next; })
111 FreeChunk* next() const { return _next; }
117 void link_next(FreeChunk* ptr) { _next = ptr; }
122 void clear_next() { _next = NULL; }
H A DpromotionInfo.hpp63 intptr_t _next; member in union:VALUE_OBJ_CLASS_SPEC::__anon232
74 res = (PromotedObject*)(_next & next_mask);
86 _next |= (intptr_t)x;
91 _next |= promoted_mask;
96 return (_next & promoted_mask) == promoted_mask;
99 _next |= displaced_mark;
104 return (_next & displaced_mark) != 0;
107 _next = 0;
110 debug_only(void *next_addr() { return (void *) &_next; })
/openjdk7/hotspot/src/share/vm/code/
H A DvtableStubs.hpp42 VtableStub* _next; // Pointer to next entry in hash table member in class:VtableStub
52 : _next(NULL), _is_vtable_stub(is_vtable_stub),
54 VtableStub* next() const { return _next; }
57 void set_next(VtableStub* n) { _next = n; }
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentG1RefineThread.hpp48 ConcurrentG1RefineThread* _next; member in class:ConcurrentG1RefineThread
H A DsparsePRT.cpp444 assert(_cur != _next, "if _expanded is true, cur should be != _next");
446 assert(_cur == _next, "if _expanded is false, cur should be == _next");
465 _next = _cur;
470 assert(_next != NULL && _cur != NULL, "Inv");
471 if (_cur != _next) { delete _cur; }
472 delete _next;
477 // We ignore "_cur" here, because it either = _next, or else it is
479 return sizeof(this) + _next
[all...]
H A DconcurrentG1RefineThread.cpp41 _next(next),
204 if (_next != NULL && !_next->is_active() && curr_buffer_num > _next->_threshold) {
205 _next->activate();
/openjdk7/hotspot/src/share/vm/utilities/
H A DnumberSeq.cpp135 AbsSeq(alpha), _length(length), _next(0) {
149 double old_val = _sequence[_next];
159 _sequence[_next] = val;
160 _next = (_next + 1) % _length;
185 unsigned last_index = (_next + _length - 1) % _length;
196 // since the array is full, _next is over the oldest value
197 return _sequence[_next];
213 int first = (_next + _length - _num) % _length;
253 s->print_cr("\t\t _length = %d, _next
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaAssertions.hpp77 inline OptionList* next() const { return _next; }
83 OptionList* _next; member in class:JavaAssertions::OptionList
/openjdk7/hotspot/src/share/vm/opto/
H A DindexSet.hpp110 BitBlock *_next; member in union:IndexSet::BitBlock::__anon323
115 void set_next(BitBlock *next) { _data._next = next; }
116 BitBlock *next() { return _data._next; }
206 IndexSet *_next; member in class:IndexSet
215 check_watch("removed from free list?", ((_next == NULL) ? 0 : _next->_serial_number));
218 return _next;
227 _next = next;
H A DcallGenerator.hpp195 WarmCallInfo* _next; // Next cooler call info in pending queue. member in class:WarmCallInfo
240 WarmCallInfo* next() const { return _next; }
241 void set_next(WarmCallInfo* n) { _next = n; }
250 _next = NULL;
271 _next = NULL;
/openjdk7/hotspot/src/share/vm/services/
H A DmemRecorder.cpp67 _next = NULL;
89 while (_next != NULL) {
90 MemRecorder* tmp = _next;
91 _next = _next->next();

Completed in 741 milliseconds

12345