• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/Security-57031.1.35/Security/libsecurity_utilities/lib/

Lines Matching refs:mValue

51     Interval(int seconds)		{ mValue = seconds; }
52 Interval(double seconds) { mValue = seconds; }
53 explicit Interval(time_t seconds) { mValue = seconds; }
55 Interval &operator += (Interval rel) { mValue += rel.mValue; return *this; }
56 Interval &operator -= (Interval rel) { mValue -= rel.mValue; return *this; }
57 Interval &operator *= (double f) { mValue *= f; return *this; }
58 Interval &operator /= (double f) { mValue /= f; return *this; }
60 bool operator < (Interval other) const { return mValue < other.mValue; }
61 bool operator <= (Interval other) const { return mValue <= other.mValue; }
62 bool operator > (Interval other) const { return mValue > other.mValue; }
63 bool operator >= (Interval other) const { return mValue >= other.mValue; }
64 bool operator == (Interval other) const { return mValue == other.mValue; }
65 bool operator != (Interval other) const { return mValue != other.mValue; }
68 double seconds() const { return mValue; }
69 double mSeconds() const { return mValue * 1E3; }
70 double uSeconds() const { return mValue * 1E6; }
76 double mValue;
91 Absolute(time_t t) { mValue = t; } // from time_t
96 Absolute &operator += (Interval rel) { mValue += rel.mValue; return *this; }
97 Absolute &operator -= (Interval rel) { mValue -= rel.mValue; return *this; }
100 bool operator < (Absolute other) const { return mValue < other.mValue; }
101 bool operator <= (Absolute other) const { return mValue <= other.mValue; }
102 bool operator > (Absolute other) const { return mValue > other.mValue; }
103 bool operator >= (Absolute other) const { return mValue >= other.mValue; }
104 bool operator == (Absolute other) const { return mValue == other.mValue; }
105 bool operator != (Absolute other) const { return mValue != other.mValue; }
110 operator time_t () const { return time_t(mValue); }
113 double internalForm() const { return mValue; }
116 double mValue;
118 Absolute(double value) : mValue(value) { }
156 { return t1.mValue - t0.mValue; }