Lines Matching refs:old
437 kstat_delta(kstat_t *old, kstat_t *new, char *name) in kstat_delta() argument
440 if (old && old->ks_data) { in kstat_delta()
441 kstat_named_t *kold = kstat_data_lookup(old, name); in kstat_delta()
489 cpu_ticks_delta(kstat_t *old, kstat_t *new) in cpu_ticks_delta() argument
494 ticks += kstat_delta(old, new, cpu_states[i]); in cpu_ticks_delta()
517 hrtime_delta(hrtime_t old, hrtime_t new) in hrtime_delta() argument
521 if ((new >= old) && (old >= 0L)) in hrtime_delta()
522 return (new - old); in hrtime_delta()
538 if (old > 0L) in hrtime_delta()
539 return (n1 - old); in hrtime_delta()
541 o1 = -old; in hrtime_delta()
554 if (old < 0L) { in hrtime_delta()
557 o2 = -old; in hrtime_delta()
560 del = UINT64_MAX - old; in hrtime_delta()