Lines Matching defs:value

122     Counter value() const { return this->s.value(); }
140 value() const
142 this->s.value(cvec);
214 * @return true if this stat has a value and satisfies its
497 /** The statistic value. */
513 * The the stat to the given value.
514 * @param val The new value.
518 * Increment the stat by the given value.
519 * @param val The new value.
523 * Decrement the stat by the given value.
524 * @param val The new value.
528 * Return the value of this stat as its base type.
529 * @return The value of this stat.
531 Counter value() const { return data; }
533 * Return the value of this stat as a result type.
534 * @return The value of this stat.
542 * Reset stat value to default
547 * @return true if zero value
596 * Increment the current count by the provided value, calls set.
602 * Deccrement the current count by the provided value, calls set.
611 Counter value() const { return current; }
625 * @return true if zero value
640 * Reset stat value to default
700 * Return the current value of this stat as its base type.
701 * @return The current value.
703 Counter value() const { return data()->value(); }
732 * Set the data value to the given value. This calls the associated storage
734 * @param v The new value.
740 * Increment the stat by the given value. This calls the associated
742 * @param v The value to add.
748 * Decrement the stat by the given value. This calls the associated
750 * @param v The value to substract.
761 Counter value() { return data()->value(); }
776 std::string str() const { return std::to_string(value()); }
781 bool zero() const { return value() == 0; }
794 Counter value() const { return *scalar; }
807 Counter value() const { return (*functor)(); }
826 Counter value() const { return (object->*method)(); }
848 scalar(T &value)
850 proxy = new ValueProxy<T>(value);
880 Counter value() { return proxy->value(); }
914 * Return the current value of this stat as its base type.
915 * @return The current value.
917 Counter value() const { return stat.data(index)->value(); }
920 * Return the current value of this statas a result type.
921 * @return The current value.
975 * Set the data value to the given value. This calls the associated storage
977 * @param v The new value.
987 * Increment the stat by the given value. This calls the associated
989 * @param v The value to add.
999 * Decrement the stat by the given value. This calls the associated
1001 * @param v The value to substract.
1078 value(VCounter &vec) const
1082 vec[i] = data(i)->value();
1358 info->cvec[i] = data(i)->value();
1362 * Reset stat value to default
1401 /** The minimum value to track. */
1403 /** The maximum value to track. */
1415 /** The minimum value to track. */
1417 /** The maximum value to track. */
1422 /** The smallest value sampled. */
1424 /** The largest value sampled. */
1447 * Add a value to the distribution for the given number of times.
1448 * @param val The value to add.
1449 * @param number The number of times to add the value.
1518 * Reset stat value to default
1559 /** The minimum value to track. */
1561 /** The maximum value to track. */
1590 * Add a value to the distribution for the given number of times.
1591 * @param val The value to add.
1592 * @param number The number of times to add the value.
1668 * Reset stat value to default
1718 * Add a value the given number of times to this running average.
1721 * @param val The value to add.
1722 * @param number The number of times to add the value.
1727 Counter value = val * number;
1728 sum += value;
1729 squares += value * value;
1758 * Reset stat value to default
1796 * Add a value to the distribution for the given number of times.
1798 * @param val The value to add.
1799 * @param number The number of times to add the value.
1804 Counter value = val * number;
1805 sum += value;
1806 squares += value * value;
1834 * Reset stat value to default
1895 * Add a value to the distribtion n times. Calls sample on the storage
1897 * @param v The value to add.
1922 * Reset stat value to default
2523 * A stat that calculates the per tick average of a value.
2605 * @param min The minimum value of the distribution.
2606 * @param max The maximum value of the distribution.
2712 * @param min The minimum value of the distribution.
2713 * @param max The maximum value of the distribution.
2810 VCounter &value() const { return cvec; }
2873 * Add a value to the distribtion n times. Calls sample on the storage
2875 * @param v The value to add.
2900 * Reset stat value to default
2934 * Add a value to the distribution for the given number of times.
2935 * @param val The value to add.
2936 * @param number The number of times to add the value.
2974 * Reset stat value to default
3074 * there is no Vector component, total() returns the same value as
3202 * @param value The value of the const node.
3204 Temp(signed char value)
3205 : node(new ConstNode<signed char>(value))
3210 * @param value The value of the const node.
3212 Temp(unsigned char value)
3213 : node(new ConstNode<unsigned char>(value))
3218 * @param value The value of the const node.
3220 Temp(signed short value)
3221 : node(new ConstNode<signed short>(value))
3226 * @param value The value of the const node.
3228 Temp(unsigned short value)
3229 : node(new ConstNode<unsigned short>(value))
3234 * @param value The value of the const node.
3236 Temp(signed int value)
3237 : node(new ConstNode<signed int>(value))
3242 * @param value The value of the const node.
3244 Temp(unsigned int value)
3245 : node(new ConstNode<unsigned int>(value))
3250 * @param value The value of the const node.
3252 Temp(signed long value)
3253 : node(new ConstNode<signed long>(value))
3258 * @param value The value of the const node.
3260 Temp(unsigned long value)
3261 : node(new ConstNode<unsigned long>(value))
3266 * @param value The value of the const node.
3268 Temp(signed long long value)
3269 : node(new ConstNode<signed long long>(value))
3274 * @param value The value of the const node.
3276 Temp(unsigned long long value)
3277 : node(new ConstNode<unsigned long long>(value))
3282 * @param value The value of the const node.
3284 Temp(float value)
3285 : node(new ConstNode<float>(value))
3290 * @param value The value of the const node.
3292 Temp(double value)
3293 : node(new ConstNode<double>(value))