Searched defs:_counter (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A Dtask.hpp52 int _counter; member in class:PeriodicTask
82 jlong tmp = (jlong) _counter + (jlong) delay_time;
85 _counter = 0;
88 _counter += delay_time;
95 assert(_interval > _counter, "task counter greater than interval?");
96 return _interval - _counter;
H A Dpark.hpp50 volatile int _counter ; member in class:Parker
56 _counter = 0 ;
H A Dtimer.hpp35 jlong _counter; member in class:VALUE_OBJ_CLASS_SPEC
43 void reset() { _counter = 0; }
46 jlong ticks() const { return _counter; }
54 jlong _counter; member in class:VALUE_OBJ_CLASS_SPEC
56 TimeStamp() { _counter = 0; }
57 void clear() { _counter = 0; }
59 bool is_updated() const { return _counter != 0; }
69 jlong ticks() const { return _counter; }
/openjdk7/hotspot/src/share/vm/interpreter/
H A DinvocationCounter.hpp44 unsigned int _counter; // format: [count|carry|state] member in class:VALUE_OBJ_CLASS_SPEC
67 count_increment = count_grain, // use this value to increment the 32bit _counter word
86 void set_carry_flag() { _counter |= carry_mask; }
89 State state() const { return (State)(_counter & state_mask); }
90 bool carry() const { return (_counter & carry_mask) != 0; }
93 int count() const { return _counter >> number_of_noncount_bits; }
102 bool reached_InvocationLimit() const { return _counter >= (unsigned int) InterpreterInvocationLimit; }
103 bool reached_BackwardBranchLimit() const { return _counter >= (unsigned int) InterpreterBackwardBranchLimit; }
107 return (_counter && count_mask) + back_edge_count->_counter >
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A Dworkgroup.hpp82 int counter() { return _counter; }
83 void set_counter(int value) { _counter = value; }
84 int *address_of_counter() { return &_counter; }
95 int _counter; member in class:VALUE_OBJ_CLASS_SPEC
102 _counter = 0;
/openjdk7/hotspot/src/share/vm/opto/
H A Dcallnode.hpp874 NamedCounter* _counter; member in class:AbstractLockNode
898 _counter = NULL;
925 NamedCounter* counter() const { return _counter; }

Completed in 48 milliseconds