Searched refs:_count (Results 26 - 43 of 43) sorted by relevance

12

/openjdk7/hotspot/src/share/vm/oops/
H A DinstanceKlass.hpp125 uint count() const { return _count; }
126 void set_count(uint count) { _count = count; }
136 uint _count; member in class:VALUE_OBJ_CLASS_SPEC
1171 int _count; member in class:nmethodBucket
1178 _count = 1;
1180 int count() { return _count; }
1181 int increment() { _count += 1; return _count; }
1182 int decrement() { _count -= 1; assert(_count >
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DjniHandles.cpp224 int _count; member in class:CountHandleClosure
226 CountHandleClosure(): _count(0) {}
228 _count++;
231 int count() { return _count; }
H A DstubCodeGenerator.cpp50 int StubCodeDesc::_count = 0; member in class:StubCodeDesc
H A DobjectMonitor.cpp374 assert (_count >= 0, "invariant") ;
378 Atomic::inc_ptr(&_count);
420 Atomic::dec_ptr(&_count);
421 assert (_count >= 0, "invariant") ;
900 // but the monitor's _count field is > 0, which inhibits reclamation.
H A DvmStructs.cpp341 nonstatic_field(nmethodBucket, _count, int) \
1071 volatile_nonstatic_field(ObjectMonitor, _count, intptr_t) \
/openjdk7/hotspot/src/share/vm/opto/
H A Dparse.hpp156 uint _count; // how many times executed? Currently only set by _goto's member in class:Parse::Block
183 void set_count( uint x ) { _count = x; }
184 uint count() const { return _count; }
H A Dmachnode.hpp462 int _count; member in class:MachNopNode
464 MachNopNode( ) : _count(1) {}
465 MachNopNode( int count ) : _count(count) {}
H A DcallGenerator.cpp1012 _count = call_count < 0 ? 1 : call_site->method()->scale_count(call_count, prof_factor);
H A Dparse1.cpp1134 _count = 0;
/openjdk7/hotspot/src/share/vm/services/
H A DmemoryService.cpp71 int _count; member in class:GcThreadCountClosure
73 GcThreadCountClosure() : _count(0) {};
75 int count() { return _count; }
79 _count++;
H A Dmanagement.cpp946 int _count; member in class:VmThreadCountClosure
948 VmThreadCountClosure() : _count(0) {};
950 int count() { return _count; }
959 _count++;
1818 int _count; member in class:ThreadTimesClosure
1825 int count() { return _count; }
1837 _count = 0;
1851 if (_count >= _names_len || _count >= _times_len) {
1860 _names_chars[_count]
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DfreeList.cpp51 _count = 0;
64 _count = 1;
H A DreferenceProcessor.cpp282 int _count; member in class:CountHandleClosure
284 CountHandleClosure(): _count(0) {}
285 void do_oop(oop* unused) { _count++; }
287 int count() { return _count; }
H A Ddump.cpp133 int _count; member in class:MoveSymbols
160 _count++;
169 _start(top), _end(end), _top(top), _count(0) { }
172 int count() const { return _count; }
/openjdk7/hotspot/src/share/vm/code/
H A Dnmethod.hpp41 int _count; member in class:ExceptionCache
48 int count() { return _count; }
49 void increment_count() { _count++; }
H A Dnmethod.cpp220 _count = 0;
/openjdk7/hotspot/src/share/vm/compiler/
H A DmethodLiveness.cpp81 int _count; member in class:BitCounter
83 BitCounter() : _count(0) {}
87 _count++;
92 return _count;
/openjdk7/hotspot/src/share/vm/ci/
H A DciMethod.cpp535 result._count = count;

Completed in 136 milliseconds

12