Lines Matching refs:old
48 hrtime_delta(hrtime_t old, hrtime_t new) in hrtime_delta() argument
53 if ((new >= old) && (old >= 0L)) { in hrtime_delta()
54 return (new - old); in hrtime_delta()
71 if (old > 0L) { in hrtime_delta()
72 return (n1 - old); in hrtime_delta()
74 o1 = -old; in hrtime_delta()
87 if (old < 0L) { in hrtime_delta()
90 o2 = -old; in hrtime_delta()
93 del = UINT64_MAX - old; in hrtime_delta()
109 u32_delta(uint32_t old, uint32_t new) in u32_delta() argument
112 if (new >= old) in u32_delta()
113 return (new - old); in u32_delta()
115 return ((UINT32_MAX - old) + new + 1); in u32_delta()
124 u64_delta(uint64_t old, uint64_t new) in u64_delta() argument
127 if (new >= old) in u64_delta()
128 return (new - old); in u64_delta()
130 return ((UINT64_MAX - old) + new + 1); in u64_delta()