Lines Matching refs:old
1308 smbstat_hrtime_delta(hrtime_t old, hrtime_t new)
1312 if ((new >= old) && (old >= 0L))
1313 return ((double)(new - old));
1319 * The new value is negative. Handle the case where the old
1326 if (old > 0L)
1327 return ((double)(n1 - old));
1329 o1 = -old;
1337 * the old entry. This implies we waited quite a few days on a very fast
1340 if (old < 0L) {
1342 o2 = -old;
1345 del = UINT64_MAX - old;