Searched refs:_refcount (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/oops/
H A Dsymbol.hpp104 volatile int _refcount; member in class:Symbol
140 int refcount() const { return _refcount; }
226 if (_refcount >= 0) {
227 Atomic::inc(&_refcount);
233 if (_refcount >= 0) {
234 Atomic::dec(&_refcount);
236 if (_refcount < 0) {
H A Dsymbol.cpp32 Symbol::Symbol(const u1* name, int length, int refcount) : _refcount(refcount), _length(length) {
/openjdk7/hotspot/src/share/vm/memory/
H A Ddump.cpp152 // as relocated by putting a negative value to its _refcount field,
156 sym->_refcount = (int)(_start - (char*)new_sym);
159 new_sym->_refcount = -1;
1092 // Phase 1a: remove symbols with _refcount == 0
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp402 volatile_nonstatic_field(Symbol, _refcount, int) \

Completed in 55 milliseconds