Home
last modified time | relevance | path

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

/freebsd/crypto/openssh/
H A Dprogressmeter.c71 static int bytes_per_second; /* current speed in bytes per second */ variable
156 bytes_per_second = 0; in refresh_progress_meter()
166 if (bytes_per_second != 0) { in refresh_progress_meter()
167 bytes_per_second = (bytes_per_second * AGE_FACTOR) + in refresh_progress_meter()
170 bytes_per_second = cur_speed; in refresh_progress_meter()
194 format_rate((off_t)bytes_per_second)); in refresh_progress_meter()
204 else if (bytes_per_second == 0 && bytes_left) in refresh_progress_meter()
208 seconds = bytes_left / bytes_per_second; in refresh_progress_meter()
257 bytes_per_second = 0; in start_progress_meter()