Lines Matching full:value
64 // value of the counter. Each thread calling this function
66 // The return value must not be cached and re-used across
103 // Internally, a counter represents a value in a row of a StatsTable.
104 // The row has a 32bit value for each process/thread in the table and also
116 // Sets the counter to a specific value.
117 void Set(int value) {
119 if (loc) *loc = value;
128 void Increment(int value) {
131 (*loc) += value;
140 void Decrement(int value) {
142 if (loc) (*loc) -= value;