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

12

/openjdk7/hotspot/src/share/vm/services/
H A DmemBaseline.hpp46 size_t _count; // number of malloc invocation from this callsite member in class:MallocCallsitePointer
51 _count = 0;
56 _count = 0;
62 _count = p.count();
68 _count ++;
73 return _count;
84 size_t _count; // number of invocation from this callsite member in class:VMCallsitePointer
90 _count = 0;
96 _count = 0;
103 _count
140 size_t _count; member in class:MallocMem
218 size_t _count; member in class:VMMem
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DcopyFailedInfo.hpp35 uint _count; member in class:CopyFailedInfo
38 CopyFailedInfo() : _first_size(0), _smallest_size(0), _total_size(0), _count(0) {}
48 _count++;
55 _count = 0;
58 bool has_failed() const { return _count != 0; }
62 uint failed_count() const { return _count; }
/openjdk7/hotspot/src/share/vm/ci/
H A DciCallProfile.hpp44 int _count; // # times has this call been executed member in class:ciCallProfile
52 _count = -1;
65 int count() const { return _count; }
72 return (float)_receiver_count[i]/(float)_count;
87 call._count = (int)(call._count * scale);
H A DciSignature.cpp80 _count = count;
89 _count(method_type->ptype_count())
94 _types = new (arena) GrowableArray<ciType*>(arena, _count + 1, 0, NULL);
95 for (int i = 0; i < _count; i++) {
106 return _types->at(_count);
115 assert(index < _count, "out of bounds");
130 for (int i = 0; i < _count; i++) {
H A DciSignature.hpp43 int _count; // number of parameter types in the signature member in class:ciSignature
64 int count() const { return _count; }
/openjdk7/hotspot/src/share/vm/runtime/
H A DdtraceJSDT.hpp69 size_t _count; // number of probe methods member in class:RegisteredProbes
74 _count = count;
79 for (size_t i = 0; i < _count; ++i) {
86 _count = 0;
101 assert(i >= 0 && i < _count, "bad nmethod index");
106 assert(i >= 0 && i < _count, "bad nmethod index");
H A DobjectMonitor.inline.hpp44 return _count;
48 _count= count;
61 assert(_count == 0, "Fatal logic error in ObjectMonitor count!");
101 return _count;
104 // Do NOT set _count = 0. There is a race such that _count could
H A DstubCodeGenerator.hpp42 static int _count; // length of list member in class:StubCodeDesc
75 _index = ++_count; // (never zero)
H A DobjectMonitor.hpp93 static int count_offset_in_bytes() { return offset_of(ObjectMonitor, _count); }
115 // TODO-FIXME: merge _count and _waiters.
117 // TODO-FIXME: assert _WaitSet != null implies _count > 0
118 return _count|_waiters|intptr_t(_owner)|intptr_t(_cxq)|intptr_t(_EntryList ) ;
142 _count = 0;
163 // _count == 0 _EntryList == NULL etc
170 // _count == 0 EntryList == NULL
271 // TODO-FIXME: _count, _waiters and _recursions should be of
275 volatile intptr_t _count; // reference count to prevent reclaimation/deflation member in class:ObjectMonitor
277 // _count i
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A Dhistogram.cpp34 _count = 0;
38 return _count;
47 Atomic::inc(&_count);
H A Devents.hpp84 int _count; member in class:EventLogBase
91 _count(0),
106 if (_count < _length) _count++;
250 out->print_cr("%s (%d events):", _name, _count);
251 if (_count == 0) {
257 if (_count < _length) {
258 for (int i = 0; i < _count; i++) {
H A Dhistogram.hpp82 jint _count; member in class:HistogramElement
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1AllocRegion.cpp132 _count += 1;
144 _name, message, _count, BOOL_TO_STR(_bot_updates),
154 _count = 0;
165 _used_bytes_before == 0 && _count == 0,
170 _count += 1;
219 _name, _count, hr_buffer, str, rest_buffer);
227 _alloc_region(NULL), _count(0), _used_bytes_before(0) { }
H A Dg1AllocRegion.hpp67 uint _count; member in class:VALUE_OBJ_CLASS_SPEC
139 uint count() { return _count; }
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiGetLoadedClasses.cpp41 int _count; member in class:JvmtiGetLoadedClassesClosure
64 _count = 0;
74 _count = 0;
85 _count = 0;
99 return _count;
103 _count = value;
123 if ((_list != NULL) && (index < _count)) {
132 if ((_list != NULL) && (index < _count)) {
155 _list = NEW_C_HEAP_ARRAY(Handle, _count, mtInternal);
158 _count
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A DcallGenerator.hpp189 float _count; // How often do we expect to reach this site? member in class:WarmCallInfo
251 _count = c;
272 _count = _profit = _work = _size = _heat = 0;
276 float count() const { return _count; }
282 void set_count(float x) { _count = x; }
H A DindexSet.hpp190 uint _count; member in class:IndexSet
265 _count = 0;
274 uint count() const { return _count; }
276 bool is_empty() const { return _count == 0; }
296 _count++;
310 _count--;
H A DindexSet.cpp287 _count = set->_count;
316 _count = 0;
340 _count = 0;
368 uint temp = _count;
369 _count = set->_count;
370 set->_count = temp;
434 assert(count <= _count, "_count i
[all...]
H A Druntime.hpp69 int _count; member in class:NamedCounter
76 _count(0),
81 int count() const { return _count; }
82 address addr() { return (address)&_count; }
/openjdk7/hotspot/src/share/vm/memory/
H A DfreeList.hpp56 ssize_t _count; // Number of entries in list member in class:VALUE_OBJ_CLASS_SPEC
77 void set_count(ssize_t v) { _count = v;}
79 _count++;
83 _count--;
84 assert(_count >= 0, "Count should not be negative");
156 return _count;
183 _allocation_stats.compute_desired(_count,
/openjdk7/jdk/src/share/classes/sun/font/
H A DGlyphLayout.java467 if (_gvdata._count >=0) {
471 if (_gvdata._count < 0) {
485 if (_gvdata._count < 0) {
535 public int _count; // number of glyphs, >= number of chars field in class:GlyphLayout.GVData
544 _count = 0;
564 System.arraycopy(_glyphs, 0, nglyphs, 0, _count);
568 System.arraycopy(_positions, 0, npositions, 0, _count * 2 + 2);
572 System.arraycopy(_indices, 0, nindices, 0, _count);
577 invdtx.transform(_positions, 0, _positions, 0, _count);
586 if (_count >
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DDocumentCache.java61 private int _count; field in class:DocumentCache
171 _count = 0;
228 if (_count < _size) {
230 _URIs[_count++] = uri;
326 for (int i=0; i<_count; i++) {
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeHistogram.cpp72 int _count; member in class:HistoEntry
75 HistoEntry(int index, int count) { _index = index; _count = count; }
77 int count() const { return _count; }
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DNumber.java78 private Pattern _count = null; field in class:Number
145 _count = parser.parsePattern(this, name, null);
191 if (_count != null) {
192 _count.typeCheck(stable);
227 return _from == null && _count == null;
442 if (_count != null) {
458 _count.translate(nodeCounterGen, matchGen);
459 _count.synthesize(nodeCounterGen, matchGen);
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DvmStructs_cms.hpp48 nonstatic_field(FreeList<FreeChunk>, _count, ssize_t) \

Completed in 124 milliseconds

12