Home
last modified time | relevance | path

Searched refs:deltat (Results 1 – 2 of 2) sorted by relevance

/dragonfly/sbin/dump/
H A Doptr.c184 int deltat, hours, mins; in timeest() local
187 deltat = (blockswritten == 0) ? 0 : tstart_writing - tnow + in timeest()
190 hours = deltat / 3600; in timeest()
191 mins = (deltat % 3600) / 60; in timeest()
/dragonfly/sys/netgraph7/
H A Dng_car.c588 struct bintime newt, deltat; in ng_car_refillhook() local
595 deltat = newt; in ng_car_refillhook()
596 bintime_sub(&deltat, &h->lastRefill); in ng_car_refillhook()
599 if (deltat.sec < 0) { in ng_car_refillhook()
605 if (deltat.sec >= 1000) { in ng_car_refillhook()
609 deltat_us = (deltat.sec << 20) + (deltat.frac >> 44); in ng_car_refillhook()